How to use pagination when getting records through a COQL Query in Zoho CRM REST API V2?
When I send a COQL query POST request to this endpoint
https://www.zohoapis.com/crm/v2/coql?page=2&per_page=10
with this body
- {
- "select_query" : "select Last_Name, First_Name, Modified_Time from Contacts where Modified_Time >= '2020-01-10T00:00:00-05:00'",
- }
I get 75 results.
How do I properly paginate results when getting records through a COQL Query?
According to
this link pagination in API V2 should be possible:
page: To get the list of records from the respective pages. Default value is 1.
per_page: To get the list of records available per page. Default value is 200.