ZOHO CREATOR DATA PUSH TO CRM

ZOHO CREATOR DATA PUSH TO CRM

I am attempting to add a potential to my crm through creator. The script saves and there are no errors on the form. The potential is not however created in the CRM. I have posted the script below. Some feed back would be appreciated. 


 fund = Map();
fund.put("Funding Opportunity Owner", Submission_Owner);
fund.put("Closing Date", Predicted_Closing_Date);
fund.put("Funding Opportunity Name", Business_Name);
fund.put("Business Name", Business_Name);
fund.put("Expected Revenue", Avg_Monthly_Revenue);
fund.put("Stage", Funding_Stage);
fund.put("Type", New_or_Renewal);
fund.put("Funding Opportunity Channel", OPP_Channel);
fund.put("Lending Product", Products_Requested);
fund.put("amount", Avg_Monthly_Revenue);
fund.put("attachment", input.File_upload);
response=zoho.crm.create("potentials", fund);