GET /v1/signatures and GET /v1/teammates, return results one page at a time using cursor-based pagination. Results are ordered newest first.
Query parameters
| Parameter | Type | Description |
|---|---|---|
cursor | string | The next_cursor from the previous response. Omit it on the first request. |
limit | integer | Page size. Defaults to 50. Maximum 100. |
The pagination object
Every list response includes apagination object alongside the data array:
| Field | Description |
|---|---|
next_cursor | Pass this back as cursor to fetch the next page. It is null on the last page. |
has_more | true when more pages are available. |
limit | The page size applied to this response. |
Fetch every page
Request the first page, then pass eachnext_cursor back as cursor until it is null: