How to pass values from Zoho CRM to Creator address field
Hello,
Maybe it is an easy question but I have some issues of how to pass address values from CRM to a creator address field.
I wrote something like the below and it did not work....
This is a sample of the code, in general I can pass all the values except of the address field
- mp = Map();
- mp.put("address_line1","This is my street");
- mp.put("district_city","Paris");
- mp.put("postal_code","GR345667");
- mp.put("state_province","State1");
- respponse= zoho.creator.updateRecord("app","myapp","form",mp,"connection")
I have also tried inside the 'put' something like "Address.address_line1" but of course it did not work.