Paginnation and Read custom view record

PHOTO EMBED

Tue Jul 08 2025 12:48:22 GMT+0000 (Coordinated Universal Time)

Saved by @Peaky ##pagination ##zoho ##zohocrm ##zoho_crm ##deluge

Pages = {1,2,3,4,5,6,7,8,9,10};
Records_List = list();
Record_List = list();
for each  Page in Pages
{
	records = zoho.crm.getRecords("POP_Requests",Page,200,{"cvid":5971686000096333104});
	if(records.size() > 0)
	{
		Record_List.addAll(records);
	}
	else
	{
		break;
	}
}
// info Record_List;
content_copyCOPY