Trying to pull a owner name (and other data) from CRM in Creator

Trying to pull a owner name (and other data) from CRM in Creator

Hello guys !

With the help of this great community I was able to pull some data from CRM "Contacts" into my Creator Form.
As you can see below, it's working like a charm but I now need help to be able to fetch only the name of the owner (my "commercial" field below) :




Here is my code :

  1. contact_map = Map();
    contact_map = zoho.crm.getRecordById("Contacts",input.Client.tolong());
    input.Phone_Number = contact_map.get("Phone");
    input.Email = contact_map.get("Email");
    input.Owner = contact_map.get("Owner");
    input.Full_Name = contact_map.get("Full_Name");
    input.Phone_Number1 = contact_map.get("Phone_Number1");
    input.Mailing_Street = contact_map.get("Mailing_Street");
    input.Mailing_Zip = contact_map.get("Mailing_Zip");
    input.Mailing_City = contact_map.get("Mailing_City");
I tried something like "Owner.name" or "Owner"."name"..  but it's not working.

Here is the "commercial" field :


Thanks a lot in advance for your help !
Fred