Pagination Links
Provides next
and/or prev
links for pagination (part of the Agent Availabilities JSON response format).
JSON format
Pagination Links are represented as JSON objects with the following properties:
Name | Type | Read-only | Mandatory | Description |
---|---|---|---|---|
next | string | false | false | A link to the next page of data. |
prev | string | false | false | A link to the previous page of data. |
Pagination Links. The same pagination links are also included in HTTP Link
headers.
Example
{
"next": "https://example.zendesk.com/api/v2/agent_availabilities/10011/channels/messaging/relationships/work_items?page%5Bafter%5D=203",
"prev": "https://example.zendesk.com/api/v2/agent_availabilities/10011/channels/messaging/relationships/work_items?page%5Bbefore%5D=202"
}