Most of our endpoints that return multiple objects are paginated. If you query them, the root level will contain the following elements:
{
"offset": 0,
"limit": 100,
"totalElements": 100000,
"data": []
}
Returns the offset in the pagination. If no offset parameter was specified in the request, it will be 0
Returns the limit. If no limit parameter was specified in the request, it will be the amount of objects to which the endpoint is limited
The number of objects that can be fetched from the resource with the specified search parameters.
In order to get all elements from a resource you need to repeat the request with setting the offset
Parameter to totalElements - (offset + limit)
until offset + limit >= totalElements