Zoho Creator can push Form data to Zoho CRM. Below steps tell you how to add a CRM lead from Zoho Creator Form. 1- Create a Lead Form in Zoho Creator: Create a Zoho Creator Form with the following fields. 2- Company Name (field type – Single Line) 3- Name (field type – Single Line) 4-…
Category: Uncategorized
Create record from creator/CRM to zoho books
Using below script you can create record in zoho books organizationID = “xxxxxx”; itemList = List(); imap = Map(); imap.put(“item_id”,”XXXXXXXX”); imap.put(“quantity”,1); imap.put(“rate”,500); itemList.add(imap); info itemList; params = Map(); params.put(“customer_id”,”XXXXXXXX”); params.put(“line_items”,itemList); res = zoho.books.createRecord(“invoices”, organizationID, params); info res; Here you can see some Example:- for each rev in Inv { pro = Add_Property[ID == rev.Property_Name];…