“paging” object

A paging object contains information required for spreading retrieved items over a number of pages or sections

{
    "total": 15,
    "count": 5,
    "offset": 10,
    "limit": 10
}
Key name Data Type In List API Description
total number Y Total number of items retrievable when the limit and offset parameters are not specified.
The total is "10000" if there are more than 10000 records.
count number Y Total number of items retrievable when the limit and offset parameters are specified. This would be the same as the number of data elements.
offset number Y Defines the start position for retrieved items. This would correspond with the value specified in the API argument.
limit number Y Defines the maximum number of items to retrieve. This would correspond with the value specified in the API argument.