OpenAPI Documentation
OpenAPI Documentation

Pagination

List APIs use page-number pagination.

Parameter Required Default Constraints
page_no No 1 Greater than or equal to 1
page_size No 20 1100

Pagination data appears in the response body data field:

{
  "list": [],
  "total": 0,
  "page_no": 1,
  "page_size": 20
}
Field Type Description
list array Records on the current page
total integer Total number of records matching the filters
page_no integer Current page number
page_size integer Current page size

The top-level next field is currently always null and is not used for pagination.

Pagination