I want to upload a file using Request api.
I successfully tested it as a Postman program.
But I don't know how to use the invoke web service action in the power automate desktop.
Please refer to the setting method below.
[postman-Request]
let formData = new FormData();
formData.append("subject_id", ‘14’);
formData.append("uploader", el.files[0], el.files[0].name);
formData.append("id", ‘testmaster’);
formData.append("password", ‘testmaster00’);
method: 'POST',
body: formData
})
.then((response) => response.json())
.then((data) => {
console.log(data);
});


I referred to the link below.
https://ashiqf.com/2021/07/25/how-to-use-form-data-and-form-urlencoded-content-type-in-power-automate-or-logic-apps-http-action/
[Result Error message]
HTTP Status 500 – Internal Server Error
Message
Failed to parse multipart servlet request; nested exception is java.io.IOException: org.apache.tomcat.util.http.fileupload.FileUploadException: the request was rejected because no multipart boundary was found
Description
The server encountered an unexpected condition that prevented it from fulfilling the request.
Exception
org.springframework.web.multipart.MultipartException: Failed to parse multipart servlet request; nested exception is java.io.IOException: org.apache.tomcat.util.http.fileupload.FileUploadException: the request was rejected because no multipart boundary was found