How to send data via endpoint to a complex scheme?

Hi,
I want to send data through an endpoint and map it to a complex schema, how should I do it?
What is the correct JSON notation?
My complex schema:


Here my endpoint - I only have one variable available, but i am sending two, i am confused.

Hi,

here is example of my configuration to understand what data I can send to the endpoint.

Schema:

Definition of endpoint (POST):

Now I can send the following data:

{
    "SomeField": "abc",
    "SomeSchema": [
        {
            "ID": 1,
            "Name": "Tomas"
        },
        {
            "ID": 2,
            "Name": "Milan"
        },    
    ]
}

And here are the data in Integray:

And data in task looks as follows:

Regards, Tomas.

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