The default records returned on a GET request is 50 results. You can use pagination to cycle through results with the following format:
Endpoint: https://api.cimcloud.com/{sitename}/{resource}/{searchstring}/{page_number}
- Notes:
- {page_number} starts at 1, where an empty or 0 value is treated the first 50 records
- {searchstring} is optional (see the searchstring article for more information on this format)
Examples:
- https://api.cimcloud.com/{sitename}/accounts/1
- https://api.cimcloud.com/{sitename}/accounts/searchlike~nm~bob/2
- https://api.cimcloud.com/{sitename}/accounts/3
- etc