Pagination
When querying for a list of objects, you will receive a format like this:
{ "total": 15646, "list": [ { "id": "bd4a0997-39db-41d9-883a-cdfa83e2101f", ... }, ... ] }
Where total is the total number of objects that are available and list is the list of objects that are returned. The limit is 1000 objects per request. So in the above response there are 15646 objects available, but only 1000 are returned. If you want the next 1000 objects, you can use the offset parameter. You can also use the limit parameter to specify how many objects you want to retrieve per request, up to a maximum of 1000.