Pagination
List endpoints support pagination via query parameters:
| Parameter | Default | Description |
|---|---|---|
start | 0 | Offset to start from |
limit | 30 | Number of records to return (max varies by entity) |
orderBy | varies | Field to sort by |
orderByDir | ASC | Sort direction (ASC or DESC) |
Responses include a total field with the full count of matching records:
{
"total": 150,
"contacts": [ ... ]
}