Element upload-id is undefined in a CFML structure referenced as part of an expression
Hi Everyone,
I have a few kiosks that I use this code for and over the last few days I keep receiving this error "Element upload-id is undefined in a CFML structure referenced as part of an expression." on line 93 which I have in bold and Italic. Nothing has changed at all with those code. Here are a few lines from it before and after the error.
</cfoutput>
<cfhttp url="#baseurl#/api/recipients/upload" method="post" result="uploadresult" >
<cfhttpparam type="header" name="Authorization" value="Bearer #token.access_token#" />
<cfhttpparam type="FormField" name="stage" value="1" />
<cfhttpparam type="FormField" name="updateAll" value="1" />
<cfhttpparam type="FormField" name="uniqueUploadId" value="#result['upload-id']#" />
</cfhttp>
<!---cfdump var="#uploadresult#" / --->
<cfoutput>
Requesting stage 3 processing<BR>
</cfoutput>
<cfhttp url="#baseurl#/api/recipients/upload" method="post" result="uploadresult" >
<cfhttpparam type="header" name="Authorization" value="Bearer #token.access_token#" />
<cfhttpparam type="FormField" name="Stage" value="3" />
<cfhttpparam type="FormField" name="updateAll" value="0" />
<cfhttpparam type="FormField" name="uniqueUploadId" value="#result['upload-id']#" />
