...
- Field:
Authorization
- Value:
Bearer eyJhbGciOiJIU...
Pagination
Pagination is required to query big amounts of data.
Query Parameter | Default | Maximum value | Description |
---|---|---|---|
limit | 100 | 10.000 | Maximum number of records to receive |
offset | 0 | Offset for the first record to receive |
To fetch all data from an endpoint:
- ?limit=100&offset=0
- ?limit=100&offset=100
- ...
- Increase offset by limit until number of returned rows is lower than limit
Filter query parameters
Filters parameters can be appended to some requests in the form of<type>:<field>=<op>:<value>
e.g. f:createdAt=gt:<timestamp>
to filter by createdAt date.
...