Pagination
How to handle results
Some API responses—especially those returning lists such as contacts, tasks, or messages—may be paginated. When pagination is applied, the response will include metadata indicating the current page, total items, and a cursor or page token for fetching the next set of results.
Be sure to check for this metadata and follow pagination links or use tokens to retrieve additional data.
Last updated