Skip to content

Pagination

PaginatedQueryParams

Query parameters for paginated routes. These parameters should be used on GET routes that support pagination.

ParameterTypeDefaultDescription
pageint321The page to return
pageSizeint32100The number of items to return per page

PaginatedBodyParams

Body parameters for paginated routes. These parameters should be used on POST and PUT routes that support pagination.

ParameterTypeDefaultDescription
pageint321The page to return
pageSizeint32100The number of items to return per page

PaginationInfo

Details about the paginated results. This model should be used to represent the response from a paginated route.

ParameterTypeDescription
pageint32The page to return
pageSizeint32The number of items to return per page
totalItemsint32The total number of items across all pages
totalPagesint32The total number of pages