Pagination
Pagination state in change history list responses.
Declaration
object PaginationProperties
| Name | Type | Description |
|---|---|---|
offset | integer | Zero-based index of the first record on the current page. |
pageSize | integer | The number of records returned on this page. |
totalCount | integer | The total number of records matching the query across all pages. Returns |
Discussion
The Pagination object is returned in the pagination field of BaseAuditResponse (and its subtypes AuditSummaryResponse and ChangeDetailsResponse).
To page through results, increment offset by pageSize on each subsequent request until offset >= totalCount. When needTotals is "false" in the AuditQuery options, page forward instead until the response result array is empty.
Example
{
"offset": 0,
"pageSize": 50,
"totalCount": 137
}