Hi all,
I’m trying to create a custom app with multiple http calls, but I always get a 400 error when I want to upload a file with a put method.
I can successfully upload the file when I make use of the HTTP module.
This is a screenshot of a successful upload with HTTP module:
This is what I tried in my custom app, but it fails with a 400 error:
“url”: “{{get(temp.getSubmitUrls,'uploadLinks.url)}}”,
“method”: “PUT”,
“hearders”: {
“Content-Type”: “application/pdf”,
“x-ms-blob-type”: “BlockBlob”
},
“body”: “binary-data”
Does anyone know what I need to change in the above code?
Thanks!

