Desperate for help here. I am trying to recreate this curl command in python that uploads a file.
curl -X POST https://invoicing.co/api/v1/invoices/pnelKrqVdK/upload \
-H 'Content-Type: multipart/form-data' \
-H 'X-API-TOKEN: TOKEN' \
-H 'X-Requested-With: XMLHttpRequest' \
-F _method=PUT \
-F 'documents[][email protected]'
The file I'm trying to upload is a pdf generated through a Saas tool that and the output is a url: https://pdf-temp-files.s3.amazonaws.com/ae7f9005db69425a874e5b2e003b9e59/time_sheet.pdf
I have the following python code written, but for the life of me I cannot get it to work
import requests
headers = {
'Content-Type': 'multipart/form-data',
'X-API-TOKEN': 'token',
'X-Requested-With': 'XMLHttpRequest',
}
files = {
'_method': (None,'PUT'),
'documents[]': 'https://pdf-temp-files.s3.amazonaws.com/ae7f9005db69425a874e5b2e003b9e59/time_sheet.pdf'
}
response = requests.post('https://invoicing.co/api/v1/invoices/pnelKrqVdKz/upload', headers=headers, files=files)
response.status_code
Error I'm getting is 405 {'message': 'Method not supported for this route'}
Any ideas?
Perhaps use the
requets.put()
method. And I think the JSON payload in the variablefiles
is formatted improperly for its contents. Hopefully the answer below moves you closer to a working program.