I’m using a REST API’s method that returns results in pages. I’d like this to be the source of a “Search” action (basic integration; not CLI).
What’s the recommended way to retrieve all pages?
** edit **
I read that a polling trigger may work for this. The API returns data in this format:
{
"hasMoreResults": true,
"continuationToken": "00000002-0000-0000-c800-000000000000",
"additionalResultsUrl": "/v1/legalentities/00000/employeesIdentifyingData?continuationToken=00000002-0000-0000-c800-000000000000",
"records":
{
"firstName": "First",
"lastName": "Last",
"socialSecurityNumber": "00000000",
"employeeId": "00000000-0000-0000-0000-00000000",
"employeeNumber": "012345",
"birthDate": "2000-01-01T00:00:00",
"status": "Active"
},
...
]
}
Can this be used with the bundle.meta.page value?