Hi!
I have a problem. I created application which merges two files however I'm thinking how to edit HTTP request from POSTMAN to flow. It's little a bit confused because im new to HTTP etc. I need to edit this to delete path of the file and insert only file content. This is request. Someone can help me little a bit?
Header:
Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW
It's a body:
----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="pdf1"; filename="/C:/Users/username/OneDrive - CompanyName/Desktop/Filename1.pdf"
Content-Type: <Content-Type header here>
(data)
----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="pdf2"; filename="/C:/Users/username/OneDrive - CompanyName/Desktop/Filename2.pdf"
Content-Type: <Content-Type header here>
(data)
----WebKitFormBoundary7MA4YWxkTrZu0gW
Content-Disposition: form-data; name="type"
64
----WebKitFormBoundary7MA4YWxkTrZu0gW
That request was working by postman with my app.
https://willpagenz.wordpress.com/2019/12/20/using-the-http-action-to-post-multipart-form-data-in-power-automate-logic-apps/
I'm trying to follow this however my brain don't get this xD