I am making a series of API calls via Do..until action.
Each call returns a body response in this form:
[
{
"id": "123",
"status": "CLOSED"
},
{
"id": "456",
"status": "ACTIVE"
}
]
Ho do I append all the responses without using Parse JSON?
I just want to save the appended results as a .json file in Sharepoint.
The problem is that it's appending the square brackets [] from each response together like this (see problem in red):
[
{
"id": "123",
"status": "CLOSED"
},
{
"id": "456",
"status": "ACTIVE"
}
]
[
{
"id": "999",
"status": "CLOSED"
},
{
"id": "888",
"status": "ACTIVE"
}
]
I would like to get this instead (please see comma instead of brackets between the call results:
[
{
"id": "123",
"status": "CLOSED"
},
{
"id": "456",
"status": "ACTIVE"
},
{
"id": "999",
"status": "CLOSED"
},
{
"id": "888",
"status": "ACTIVE"
}
]