How to pass values from Zoho CRM to Creator address field

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
  1. mp = Map();
  2. mp.put("address_line1","This is my street");
  3. mp.put("district_city","Paris");
  4. mp.put("postal_code","GR345667");
  5. mp.put("state_province","State1");
  6. 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.