I'm trying to use a HTTP Request in a custom connector, but I can't because It seems like the custom connector can't manage two bodys and headers in multipart/form-data and with a request HTTP , does work well. Anybody can tell me how can I make it?
This is my Request HTTP:
When I make the custom connector with Import with sample
appears like this :
Some help to make this done?
Thanks in advance.
Check the sample JSON you feed the custom connector. I think maybe you missed the square brackets denoting the list of objects. When you give it a JSON list, the power automate experience should be similar to what you describe, but there will also be an Add Item button that you can use to add additional rows to the list.
Here's an example:
I create a new custom connector hitting abc.123.com/test, and I am going to send it a POST with the body:
{
"content":[
{
"myobj":1
},
{
"myobj":2
}
]
}
and now when I publish this and add it as an Action in my flow:
I can add an arbitrary number of items to this list by just clicking "Add new item", or I can click the little "switch to input" icon in the upper right to get a raw JSON body input option:
Hi @cchannon , thnaks for your solution, but the thing is that if I put, following your example "two contents" , the custom connector just recognize one of them. That's what happening with the two headers and the two body I have , see the image in the beggining of the post.
Again, if you are not getting the "add new item" option in your flow, something about your JSON is causing the custom connector to not realize that $multipart is a list. NOTE: in the Test screen in the custom connector, it will not give you an Add New. You will need to test it with a one-member list, then add it to a flow to actually test a multiple-member list.
It appears, but the body from file doesn't
Give it a simpler example for body that doesn't include those optional transalateto/translatefrom strings, then use the little icon in the upper right to feed it anything you want in the form of raw json.