Pagination¶
| Field | Type | Description |
|---|---|---|
| offset | optional uint32 | The starting offset for pagination. For example, set this to 10 to start with the 10th record. Defaults to 0. |
| limit | optional uint32 | The maximum number of items to return. The server returns at most min(items.count, limit, 100). |
Example¶
JSON
{
"limit": 25,
"offset": 0
}