Several collection endpoints support pagination to enhance API performance, which limits the returned records at a time.
To use this feature, add a page and, optionally, a per parameter to the URL's query string. For example, the following url...
curl --request GET \
--url 'https://{endpoint}.console.so/api/v1/profile/40409/transactions?page=0&size=7'
...will return the second page of seven transactions of the transactions sheet. If the per parameter is not provided, the API will return 25 records per page by default, unless otherwise specified.
The following objects will be returned in all paginated responses:
{
"data": {
"pagination": {
"has_more": false,
"page": 0,
"per_page": 30
}
}
}