Pagination
The two resource parameters below support pagination.
Parameter | Description |
---|---|
Count | Indicates the number of desired records to be returned in the response. |
Offset | Indicates the starting point from which the number of records should be returned in the response. If you wish to start with the first record, you must provide 0. Always use the number prior to the record position that is desired. |
For example, if you have 100 records and wish to return 25 per page, format it this way:
- count=25, offset=0
- count=25, offset 25
- count=25, offset 50
- count=25, offset 75Count Limit: 50
Default Count: 10
Updated 5 months ago