I am at a loss here....

I am at a loss here....

I have been working on this custom button all day and I have tried so many variations. I am trying to create a new record in CustomModule7  (API: "Service"). I have yet to be able to have it create a record, let alone populate anything. Function fires without errors. Here is my custom function:

id = strId.toLong();
recContact = zoho.crm.getRecordById("Contacts",id);
strContact = id;
strOwner = zoho.loginuser;
strServicename = "test";
mapService = Map();
mapService .put("Name",strServicename);
mapService .put("Contact",id);
mapService .put("Owner",strOwner);
create = zoho.crm.create("CustomModule7",mapService);
return "";


I have tried probably a 100 different variations of the second to last line. 
Servicecreate = 
CustomModule7Create =
response = 
.... 
hundreds of  combinantions. Sill cannot get it to create a record in module "CustomModule7"  (API: "Service")

Anyone have any advice. I have exhausted my means.