Seems like the file object is empty? even if i console log it i have the same issue.
I want to use it as form-data value in a multi step action
Seems like the file object is empty? even if i console log it i have the same issue.
I want to use it as form-data value in a multi step action
Hi @nikosaaa and welcome to our community! I’ll check your question and get back to you soon with an answer
Hello @nikosaaa
FormData body type for HTTP datasource isn’t ready yet.
You can send file via fetch
API by replacing HTTP step with the following Code step
return fetch('url', {
method: 'POST',
body: {{data}},
});