Data mapper in HTTP Actions for multipart endpoints
In my application, all request bodies need to be form data with data as the key and the json body as the value. I am able to handle this in http actions with raw json body by having it be something like data={<insert body here>} and having the header of Content-Type=application/x-www-form-urlencoded
I want to use the new data mapper functionality in http actions so it will handle escaping and such for me, however I cannot seem to find a way to get it to work with this setup. I have attempted numerous times with variations of data: <json to mapper syntax> , but the app always returns with a missing data element error. Is there any way to handle this currently?