Connection between Zoho Creator and CRM impossible
Hello everyone,
I am trying to pull contact entries from ZOHO CRM to an application I am trying to build in Creator.
Unfortunately, I do not get my entries showing up, I always get "null". Please have a look at my configuration and tell me if I am missing something.
Also I am putting my code below, trying as well to get single record but not working too:
- Leads_From_CRM = List();
- contactsList = zoho.crm.getRecords("Contacts");
- for each contact in contactsList
- {
- Leads_From_CRM.add(contact.get("Last Name"));
- }
- info Leads_From_CRM.toMap();
Please help , thanking you all !