Pagination
LEGACY
AI Tools
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
Open in ChatGPT
Open in ChatGPT to ask questions about this page
Open in Claude
Open in Claude to ask questions about this page
Copy as Markdown
Copy this page as markdown to use with AI assistants
View as Markdown
Open this page as markdown in a new tab
The Zoho Cliq REST API v2 uses cursor-based pagination on list endpoints. Token names vary by module, but the behavior is consistent: pass the token from the previous response to fetch the next page. When the token is absent, you have reached the last page.
The token name, default limit, and maximum limit are documented on each endpoint page.
Token reference by module
| Module | Token name | Also supports |
|---|---|---|
| Bots | next_token | sync_token |
| Channels | next_token | sync_token |
| Chats | next_token | N/A |
| Threads (in a chat) | next_token | next_search_token when search_key is used |
| Messages (search) | next_token | N/A |
| Pin Messages | next_token | sync_token |
| Reminders | next_set_token | N/A |
| Databases (records) | start_token | N/A |
| Functions | next_token | sync_token |
| Widgets | next_token | sync_token |
| Slash Commands | next_token | sync_token |
| Message Actions | next_token | sync_token |
| Schedulers | next_token | N/A |
| Calls & Meetings | next_token | sync_token |
| Bot Subscribers | next_token | sync_token |
| Departments, Users | next_token | N/A |
| Bots / Message Actions (Marketplace) | page_number | N/A |
💡 Recommendation: For new integrations, use v3 pagination which provides a simpler and consistent model with
next_token and sync_token across all modules.