Here is a screenshot. The only issue is with the final HTTP call to download the document. As per DeepL’s documentation I need to perform this call to download a file
However it seems the HTTP request module doesnt support downloading files. And the HTTP module to download file doesnt support POST requests with parameters.
The get a file module does not support POST requests nor adding form data and custom authorization headers, unfortunately.
See the curl example of the request to be performed: curl --request POST –url ``https://api.deepl.com/v2/document/{document_id}/result`` –header ‘Authorization: xxxx’ –header ‘Content-Type: application/x-www-form-urlencoded’ –data document_key=xxxx