The Pagination message provides a standardized way to handle paginated results across all API endpoints. It supports
both cursor-based and offset-based pagination, with configurable page sizes and sorting options. This ensures consistent
and efficient data retrieval for large result sets.
| Field Name | Type | Required | Description |
|---|---|---|---|
pageSize |
int32 | Yes | Number of items to return per page (1~500, default: 100) |
pageToken |
string | No | Token for retrieving the next page (min length 1, max length 64) |
⚠️
pageTokenis optional. Leave empty for the first page. Obtain from previous response for subsequent pages.
⚠️
pageSizemaximum is 500. Requests exceeding 500 will return anInvalidArgumenterror. Default is 100 if not specified.
{
"pageSize": 20,
"pageToken": "next_page_token_here"
}