Good morning Community
I am building a flow that needs to send a CSV file to an endpoint, I have managed to built the request meeting all the requirements from the vendor, however, when the request is sent then fails. Looking at the raw data that gets sent to the API in the POST request, I noticed that every part of the body that contains double quotes, get replaced with /"value"/, and this is the cause of the failure. This API is very sensitive.
Is there any way I can change this so the double quotes are left intact?, please see below the screenshot of the flow and the raw data that gets generated:

The body I am sending is this:
--fileboundary
Content-Disposition: form-data; name="module"
InternalTest
--fileboundary
Content-Disposition: form-data; name="import_template_id";
XXXXX
--fileboundary
Content-Disposition: form-data; name="payload"; filename="API_data_Test.csv"
This is the body being sent to the API, I highlighted in red what needs to be kept in only double quotes:
"body":" --fileboundary\r\nContent-Disposition: form-data; name=\"module\"\r\n\r\nInternalTest\r\n--fileboundary\r\nContent-Disposition: form-data; name=\"import_template_id\";\r\n\r\nXXXXXXXX\r\n--fileboundary\r\nContent-Disposition: form-data; name=\"payload\"; filename=\"API_data_Test.csv\"\r\n\
Is there any way I can keep the body as I am drafting it above?