Mapping fields from Creator to CRM

Mapping fields from Creator to CRM

Hello,

I am attempting to create a record in CRM Contacts from a Creator form submission. The form contains the fields First Name and Last Name. "Name" seems to be the only acceptable field in Creator. Is there a way to map First Name and Last Name separately?

Thanks!


Quotemap=map();
Quotemap.put("First Name",input.First_Name);
Quotemap.put("Last Name",input.Last_Name);
Quotemap.put("Company",input.Account_Name);
Quotemap.put("City",input.City);
Quotemap.put("Phone",input.Phone);
Quotemap.put("Email",input.Email);
Quotemap.put("Attachment",input.File_upload);
CRMresponse = zoho.crm.create("Contacts",Quotemap,2);
//info response;
//input.ContactId = CRMresponse.get("Id");
//Adding notes to a Contact
notesMap={ "entityId" : "262950000000274001", "Note Title" : "Zoho CRM Sample Note", "Note Content" : "This is sample content to test." };
notesResponse = zoho.crm.create("Notes",notesMap);
info notesResponse;