Pagination¶
This object contains the pagination information of a resource list. Three fields always exist in this object:
- skip: The offset index into the total resource list to be skipped
- limit: The number of resource to be returned
- total: The total number of resources that exist on the system/hierarchy.
If a GET call was made with the parameter
count=false
, then this value will be 0.
Example of a pagination object within a list response.
"pagination": {
"skip": 0,
"total": 25,
"limit": 250
}