oph_2022
3 years agoOccasional Contributor
REST Request - JSON response without bracket
Hi,
I would like to know if it's possible to receive a Json response without the bracket ?
For example i would like this json response :
[
{
"code": "0000000000",
"message": "OK"
},
{
"code": "0000000000",
"message": "OK"
},
{
"code": "0000000000",
"message": "OK"
}
]
Like this without the bracket [...] :
{
"code": "0000000000",
"message": "OK"
},
{
"code": "0000000000",
"message": "OK"
},
{
"code": "0000000000",
"message": "OK"
}
If someone can share me a way to do this, it will be great.
I know the ndjson format can do this but i don't think this format is supported in ReadyAPI ?
Thanks,
Olivier