Pushing data from Creator to CRM Lead

Pushing data from Creator to CRM Lead

Hi there,

I'm trying to make a booking app by using a pre-made Appointment Management app in creator.

Form works fine but even there is no error message, somehow I can't push data from creator to CRM Leads.
Is there something wrong on my code or do I need other steps to push the data?

Thank,

Yu


  1. ////  Data to CRM ////
  2. mp = Map();
  3. mp.put("Last_Name",input.Customer_Name.first_name);
  4. mp.put("First_Name",input.Customer_Name.last_name);
  5. mp.put("Type",input.Service);
  6. mp.put("Email",input.Customer_Email);
  7. mp.put("Mobile",input.Phone_Number);
  8. mp.put("Company",input.Booking_Id);
  9. mp.put("ShootDate",input.Schedule_Date_Time);
  10. mp.put("Modified_By",input.Staff_Name);
  11. mp.put("Branch",input.Branch);
  12. resp = zoho.crm.createRecord("Leads",mp);
  13. info resp;