Hello
I had built a a process that uses a run command tool to execute the following curl command:
curl -X POST ^
-H "accept: multipart/form-data" ^
-u "**text**" ^
-F "file=@**example file path**" ^
-o "**output file path**" ^
"**URL**"
Coming back to it a few month later it is causing some issues in the process and I was wondering how this could be replicated in the download tool, specifically the "-u" and "-F" parts.
Hi @Matteop9,
This article covers the basics of converting a cURL request into the Download tool. You can either configure the authorization or send it in headers, and you can build the query in a single field or set it up to post each field in the configuration.
If this helps, please consider marking it as a solution so others may find it.