Can multiple records be sent to an endpoint?

Hi, can I send more than one record to the input of endpoint? body format is JSON

My body code: { "Value": "something one" }, { "Value": "some two" }

Response: 400 Bad Request, “Status”: “FailedInput”
Input mapping:
obrazek

Hi,

in case you want to send multiple rows so called array of the records you need to wrap then into ** [ ] **.

For example:

[{ "Value": "something one" }, { "Value": "some two" }]

More about valid JSON format can be found here: JSON or here: JSON - Wikipedia.

1 Like

That’s it, thank you

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.