
Announcements
Hi!
I'm having troubles trying to fit my working cURL request in to HTTP action within Powe Automate. Basically what it does is that it sends a pdf file to a specific web resource. The format is as follows:
curl --request POST 'URL_to_API' --header 'api-token: API_TOKEN' --header 'user: USER' --header 'Content-Type: multipart/form-data; boundary=----MyFormBoundary' --form 'upload_as="expanded_pdf"' --form 'file=@"/my_contract.pdf"'
I can't seem to find the correct way to setup the Body for this call. Any help would be greatly appreciated 🙂