I would like to get a list of records in the response of a service.
The process is :
FIND ALL Regio
"The service reply will return object" : Regio
"Multiple instances of the object will be returned" is ticked.
See attachment.
Unfortunately the service will not give a response. The system hangs.
So the question is how to get a (JSON) response with multiple records ?
I expect a response like :
{
{
"Regio": "North",
"Number": 122
},
{
"Regio": "South",
"Number": 123
},
{
"Regio": "West",
"Number": 125
}
}

