how to get all the records in the custom View more than 200 records , Without using the page Concept
how to get all the records in the custom View more than 200 records , Without giveing page as default in the Loop Concept
Pls help how We can Achive this
void schedule.Lead_Attempt_To_contact_schedule_10_30()
{
pages = {1,2};
for each pg in pages
{
query_map = Map();
query_map.put("sort_order","asc");
query_map.put("sort_by","Created_Time");
query_map.put("cvid","5157675000167989584");
Leads_detail = zoho.crm.getRecords("Leads",pg,200,query_map);
info Leads_detail;
}
}
any solution