Pagination API Notes Paginated query APIs return the "next" field in one of two formats:
1.
Format 1: No pagination data "next": null
2.
Format 2: With pagination data "next": { "taskId": "c95097f2-a7d9-4883-9c70-a6858c4b7906", "pageKey": "2" // indicates fetching page 2 }
Notes: When next is empty/null, there is no next page and the query is complete. When next has a value, call this paginated API again with the returned parameters.