I am working on an API workflow and for one of the calls I need to pass the following into the body
{
"start": 0,
"limit": 5,
"queries": [
{
"field": "valueString",
"values": [arrayOfStrings],
"matchType": 7
}
]
}
The indentation is not important.
I can ad start & finish tags into the payload directly:

But not sure how I add the three nested tags.
Appreciate any help
Thanks