Hi All,
I am using the Zendesk API to get a list of users in Zendesk - Zendesk developers - API docs.
The maximum number of records returned per page is 100.
When I issue a GET request without pagination turned on, it only fetches the first 100 records

If I turn on Pagination and set the threshold to 100

I get this error:
The response is not a valid paginated response. The paginated response is missing a property 'value' of type array.
The schema of the response looks like this:
{
"type": "object",
"properties": {
"users": {
"type": "array",
"items": {
}
},
"next_page": {
"type": "string"
},
"previous_page": {},
"count": {
"type": "integer"
}
}
}
It looks like Flow is complaining about the property being called users and not value.
Any help would be appreciated.