Pagination¶
Source definition: src/bitdrift/public/unary/common/v1/common.proto#L30-L38
| 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 between 0 and 100 (excluding lower bound) |
The maximum number of items to return. The server returns at most min(items.count, limit, 100). |
Example¶
JSON
{
"limit": 25,
"offset": 0
}