Pagination
Name
Type
Description
{
"meta": {
"current_page": 2, // tells the current page in the result set
"next_page": 3, // optional, present if there are additional resources available
"prev_page": 1 // optional, present if there is a previous page to go to
},
"result": [] // array of resources accessed
}curl --request GET \
--url https://partners.clym.io/api/portal/domains?limit=30&page=2 \
--header 'Authorization: {YOUR_API_KEY}'{
"meta": {
"current_page": 2,
"next_page": 3,
"prev_page": 1
},
"result": [
{
"id": "....."
}
]
}Last updated

