Dear PA Community,
I am struggling to parse JSON that includes page numbers, etc. The below JSON is for the entities listed in a human capital management system. I've tried initializing a variable as array and object then "apply to" to no avail.
Here is the JSON I receive:
{
"nextPageUrl": null,
"previousPageUrl": null,
"results": [
{
"id": 2784,
"clientCode": "7898",
"clientName": "Tobin Performing Arts",
"links": [
{
"href": "https://www.zzzzzz.com/rest/api/clients/2784",
"rel": "self"
},
{
"href": null,
"rel": "Detailed"
},
{
"href": "https://www.zzzzzzz.com/rest/api/clients/2784/legals",
"rel": "LegalCompanies"
}
]
},
{
"id": 11569,
"clientCode": "Code1",
"clientName": "Biz Group",
"links": [
{
"href": "https://www.zzzzzzzz.com/rest/api/clients/11569",
"rel": "self"
},
{
"href": null,
"rel": "Detailed"
},
{
"href": "https://www.zzzzzzzz.com/rest/api/clients/11569/legals",
"rel": "LegalCompanies"
}
]
}
],
"totalItems": 2,
"totalPages": 1
}
Here is the flow thus far:
