Accela API supports offset-based pagination.
The following are the parameters used in HTTP request.
Paging Key |
Description |
Offset |
The offset start of each page by the number specified. Start offset: 0 Default offset: 0 |
Limit |
The number of items that are returned in each page. Note this is an upper limit; if there are not enough items to return, less than this number is returned. Default limit: 25 Max limit: 1000 |
Request Sample
GET https://apis.accela.com/v4/records/?offset=0&limit=100
The following is the response paging information.
Paging Key |
Description |
hasMore |
true if there are more items available beyond current paged response. |
Response Sample
"page": {
"totalRows": 100,
"hasMore": true
}