Pagination
Pagination is a feature introduced into the API to manage requests for large amounts of data. It enables us to deliver data in a measured way that does not put a strain on performance for all API users. We use a method called cursor pagination. This takes the following form:
Request
[PlatformAddress]/api/connector/v1/{entity}/getAll
Property | Type | Contract | Description |
---|---|---|---|
| string | required | Token identifying the client application. |
| string | required | Access token of the client application. |
| string | required | Name and version of the client application. |
| required | Limitation on the quantity of data returned (using cursor pagination). |
Limitation
Property | Type | Contract | Description |
---|---|---|---|
| string | optional | Unique identifier of the item one newer in time order than the items to be returned. If Cursor is not specified, i.e. null, then the latest or most recent items will be returned. Note that the response message will include the identifier of the oldest item in the response, which can then be used in subsequent calls - see Limitation example below. |
| number | required | Count of items to be returned, minimum 1, maximum 1000. |
Limitation example: A request with Cursor set to null and Count set to 10 will return the latest or most recent 10 items, and the value of Cursor in the response will reference the oldest of those 10 items returned. Let's say the value of Cursor returned is "12345", then if a subsequent request is made with Cursor set to "12345" and Count set to 10, then the next oldest 10 items will be returned. This process can be repeated as required to fetch historical data.
Response
Property | Type | Contract | Description |
---|---|---|---|
| ... | required | Placeholder for response data (details will vary). |
| string | optional | Unique identifier of the last and hence oldest datum returned. This can be used in Limitation in a subsequent request to fetch the next batch of older data. If Limitation is specified in the request message, then |
Cursor null: Cursor is shown as optional even though the field is always present in the response. This is because if there is no data to return then the value of Cursor is null. Cursor identifies the last datum returned, therefore it will only ever be null if there is no data returned.
How to request pages
Set a suitable value for Count and request pages of data until Cursor in the response is null. Alternatively, count the number of data records returned. If it is less than the number requested, this implies you have come to the end of the data.
Last updated