Responses returned by the Reactor API are paginated. The default page size is 25 elements. Details about the pagination are reported in the meta.pagination
section of the API response object:
"meta": {
"pagination": {
"current_page": 1,
"next_page": 2,
"prev_page": null,
"total_pages": 4,
"total_count": 90
}
}
It is possible to get a specific page and to modify the size of a page by including a page
query parameter in the request path.
To get a specific page:
GET /{RESOURCE_TYPE}/{RESOURCE_ID}?page[number]={PAGE_NUMBER}
To change the page size:
GET /{RESOURCE_TYPE}/{RESOURCE_ID}?page[size]={PAGE_SIZE}
Different options can be combined together:
GET /{RESOURCE_TYPE}/{RESOURCE_ID}?page[size]={PAGE_SIZE}&page[number]={PAGE_NUMBER}