offset and limit to request a certain part of the data. E.g.
GET /partner/v1/customers?offset=0&limit=10 returns the first 10 records
GET /partner/v1/customers?offset=10&limit=10 returns the next 10 records
In the response, the API returns a count parameter that shows the number of records included the response, and a hasMoreItems flag that indicates whether there are more records in the list, so that your application can determine whether to issue another call to request the remaining records or whether it reached the end of the list.
Example