All top-level list endpoints can be paginated. They return a meta tag that contains all pagination data.
Example Request
curl "https://api-us-snd.fullscript.io/api/clinic/patients?page[number]=2&page[size]=20" \
-H 'Authorization: Bearer XXXXXXXXXXXXXXXXXXXX'
Example Response
{
"patients": [
{...}
],
"meta": {
"current_page": 2,
"next_page": null,
"prev_page": 1,
"total_pages": 2,
"total_count": 40
}
}
The maximum page size is 100.