Hi Franek,
I wasn’t able to use the multipart mode
https://daniels-notes.de/posts/2024/importing-applications-using-an-application#request-body-type-multipart
But it could be different in your case..
I would suggest to add a proxy like HttpToolkit to view the raw outgoing request. You may be able to modify it in a way that the result would be the same as in Postman.
https://daniels-notes.de/posts/2022/debug-web-service-datasource
Best regards,
Daniel
I was only able to send one parameter as multipart/form-data—two or more cause a failure, but I need to send more.
Works:
In JSON part header:
Content-Type: multipart/form-data
Content-Disposition: form-data; name="Action"
In JSON part:
ActionName
Doesn't:
In JSON part header:
Content-Type: multipart/form-data
Content-Disposition: form-data; name="Action"
Content-Disposition: form-data; name="Subject"
In JSON part:
ActionName
SubjectName
Unfortunately, I cannot install any MITM tools. I think an SDK is the only way :(