Pagination
Cursor-based pagination on the list endpoints using last_record_number.
The two list endpoints use cursor-based pagination on last_record_number.
| Request param | Type | Description |
|---|---|---|
per_page | integer | Page size. Default 25, range 1–100. |
last_record_number | integer | Cursor. Pass the value returned by the previous response. Use 0 (the default) for the first page. |
| Response field | Type | Description |
|---|---|---|
total_records | integer | Total records matching the filters across all pages. |
last_record_number | integer | Cursor — pass it as the last_record_number query param on the next request. |
per_page | integer | Page size in effect. |
To page through all results: request with last_record_number=0, then repeat using the last_record_number from each response until you have retrieved total_records items.

