I've created a custom workflow to POST a form I've created to an external service, the external service expects the variables to be named in a certain way. For example the city input value on my umbraco form should have the id city when I post it to the external form. When I view the POST in Chrome, the id of all the variables that get posted are GUIDs. For example:
POST Variables
Hello,
I've created a custom workflow to POST a form I've created to an external service, the external service expects the variables to be named in a certain way. For example the city input value on my umbraco form should have the id city when I post it to the external form. When I view the POST in Chrome, the id of all the variables that get posted are GUIDs. For example:
------WebKitFormBoundary4Riz2ByL5btqjRWX Content-Disposition: form-data; name="4c4e1242-035b-4609-d444-d55c34acd58e"
New York
Is there any way for me to map the posted fields to other values so that it looks like this:
------WebKitFormBoundary4Riz2ByL5btqjRWX Content-Disposition: form-data; name="city"
New York
is working on a reply...