Getting Started
Pagination
Updated: July 4, 2025
All top-level API resources support bulk fetches through the organization search endpoint:
/organisations/{ORG_UUID}/search
This allows you to retrieve large datasets efficiently by breaking them into manageable chunks.
This API accepts two query string parameters to control data retrieval:
size
marker
Parameter | Description | Type | Limits |
---|---|---|---|
size | Number of records to return in the response | Integer | Maximum: 100 |
marker | Starting point for pagination (offset) | Integer | - |
Pagination example
POST https://api.saas.eu-west-1.prod.firetail.app/organisations/{ORG_UUID}/search?size=100&marker=100
This request will:
- Skip the first 100 records (marker=100).
- Return up to 100 records starting from the 101st item (size=100).