Hi
I am trying to use an API and POST multipart/form-data. I am using the example from the API docs which includes an array. When I try to post this the error is Arrays are not supported. I am using a function block to pass in the data.
The form data library we use does not support array types. Are you sure you want to be using multipart/form-data and not application/x-www-form-urlencoded?
I have contacted support and they have responded as follows
If you look at the POST call you're making to create invoice, you are passing the JSONString as a query parameter. Instead of that, you need to pass it as form-data.
I have contacted support and they have responded as follows
If you look at the POST call you're making to create invoice, you are passing the JSONString as a query parameter. Instead of that, you need to pass it as form-data.