Pagination
Paginated endpoints use 1-based pages.
| Parameter | Description |
|---|---|
page | Page number. Defaults to 1. |
pageSize | Rows per page. Endpoint-specific max, usually 100 or 200. |
limit | Alias accepted by some endpoints. |
Response pagination usually includes:
{
"pagination": {
"page": 1,
"page_size": 25,
"total": 120,
"total_pages": 5,
"has_more": true
}
}
Box history uses cursor pagination with cursor, since_id, and next_cursor.