Hi guys,
I am running into issues parsing the following JSON response with a dynamic array id, which in the below example is "697676":
{
"superAdjustments": {
"697676": [
{
"notes": null,
"amount": 405.46,
"contributionType": "Employer Contribution",
"id": 321838,
"externalId": null,
"locationId": "174855",
"locationName": "Mkt-023",
"employeeId": "697676",
"employeeName": "Christopher WOOD",
"employeeExternalId": "a3V28000000wnh2EAA"
}
]
},
"payRunId": 3346135
}
When I set the Parse JSON schema it hard codes the array id, how can this be set to dynamically update?
Below is the top of the JSON schema where the array is defined:
Below is an example of flow failing due to the response array id, not matching the static array value set within the schema:
Any guidance would be greatly appreciated, thanks.