Paginating Through Records
When an endpoint supports pagination, the API response includes pagination tokens:- Use
next_page_token
to request the next page. - Use
previous_page_token
to request the previous page. - If either token is
null
, there are no additional pages in that direction.
page_token
parameter in your request:
Page Size
By default, the API returns 50 records per page, with a maximum of 100 records per page. You can adjust this by setting thepage_size
parameter:
Questions? Reach out via our Contact form.