Assuming createrecord is required, the following 25 results were found.
ZohoCreator // I have a custom form in ZC with the fields "Event_Type" (single-line) and "JSON_Payload" (multi-line) m_CreateRecord = Map(); m_CreateRecord.put("Event_Type","Order Update"); m_CreateRecord.put("JSON_Payload",m_Payload.toString());...
= v_SoapAction.toList("/"); v_Type = l_SoapActionParts.get(l_SoapActionParts.size() - 1); } } m_Blank = Map(); m_CreateRecord = Map(); m_CreateRecord.put("Event_Type",v_Type); m_CreateRecord.put("Payload",m_Payload.toString()); r_CreateRecord =...
v_ResponseCode = 200; } m_Response.put("status_code",v_ResponseCode); // // setup Zoho Creator entry m_Blank = Map(); m_CreateRecord = Map(); m_CreateRecord.put("Event_Type","Order Update"); m_CreateRecord.put("JSON_Payload",m_Payload.toString());...
// // create CRM account for other contact records if(b_CreateAccount) { r_CreateAccount = zoho.crm.createRecord("Accounts",m_CrmAccount); if(b_Debug) { info "Creating CRM Account: " + r_CreateAccount; } if(!isNull(r_CreateAccount.getJSON("id"))) {...
// // create CRM account for other contact records if(b_CreateAccount) { r_CreateAccount = zoho.crm.createRecord("Accounts",m_CrmAccount); if(b_Debug) { info "Creating CRM Account: " + r_CreateAccount; } if(!isNull(r_CreateAccount.getJSON("id"))) {...
m_CreateContactPerson.put("last_name", "Lipman"); m_CreateContactPerson.put("email", "somewhere@beyondthesea.com"); m_CreateRecord = Map(); m_CreateRecord.put("JSONString",m_CreateContactPerson); r_Response = invokeUrl [ url:...
r_Response = invokeurl [ url :v_DataEndpoint type :POST parameters:m_CreateRecord headers:m_Header ]; Solution: My endpoint was the same as a create/add record when it should be suffixed with the ID of the item to update: v_DataEndpoint =...
in a module that contains a lookup m_Create = Map(); m_Create.put("Name","Joels Amazing Test"); r_Create = zoho.crm.createRecord("Tests", m_Create); // now take the ID that was created and use the following code to populate the multi-lookup field...
} // // shopify tags l_Tags = input.Tags; m_Product.put("tags",l_Tags); // // JSON product request m_CreateRecord = Map(); m_CreateRecord.put("product",m_Product); // // send request to Shopify API r_ShopifyConfig = API_Integration[Connection_Name ==...
did not. Why? I don't often do this to create a Creator record but I'm going to use the shortcode function zoho.creator.createRecord() and wanted to update the first name of a name field but I was getting the following error: { "code": 2945,...
to retrieve the document later from ZohoWriter. m_ZCrm_ZSDoc.put("Request_ID",v_RequestId); r_ZCrm_ZSDoc = zoho.crm.createRecord("zohosign__ZohoSign_Documents",m_ZCrm_ZSDoc); v_OutputMessage = "Credit application sent to " + v_RecipientEmail + " for...
"user"); m_Create.put("Email", zoho.loginuserid); m_Create.put("Owner", v_LoggedInUserID); r_Create = zoho.crm.createRecord("GPT_Chats", m_Create); // // add the last question to the messages m_Chat = Map(); m_Chat.put("role", "user");...
m_CreateAccount.put("Turnover", m_SurveyBody.get("Last_Years_Turnover")); r_CreateAccount = zoho.crm.createRecord("Accounts", m_CreateAccount); info "Creating CRM Account: " + r_CreateAccount; if(!isNull(r_CreateAccount.get("id"))) { v_CrmAccountID =...
// create the record r_Clone = zoho.crm.createRecord("Invoices",m_Clone); // get cloned invoice ID if(!isNull(r_Clone.get("id"))) { v_Duplicate_InvoiceID = r_Clone.get("id"); } Additional Note(s): Invoice_Date in this example is the current date in...
them. We only found this an issue when using REST API v2.1 but also to show you how to configure triggers when using createRecord or updateRecord. Why? We had a Creator app updating a CRM record which in turn had a workflow to update the Stage in...
to create the Sales Order m_BooksCreateSO.put("date",zoho.currentdate); // // push to ZohoBooks r_CreateSO = zoho.books.createRecord("salesorders",v_BooksOrgID,m_BooksCreateSO,"ab_books"); // output response info r_CreateSO; // read response...
does anything. hopefully notifies the staff user m_ScheduleCall.put("send_notification",true); r_ScheduleCall = zoho.crm.createRecord("Calls", m_ScheduleCall); info r_ScheduleCall; Error(s) Encountered:...
status m_ScheduleMeeting.put("Status","Not Started"); // // send request and create record r_CreateMeeting = zoho.crm.createRecord("Events",m_ScheduleMeeting); // // output response (for debugging purposes) info r_CreateMeeting;
m_Blank = Map(); m_CreatorParams = Map(); m_CreatorParams.put("Zoho_Inventory_ID",v_ItemId); r_Creator = zoho.creator.createRecord(v_AppOwner,v_AppName,v_FormName,m_CreatorParams,m_Blank,"joel_creator"); if(!isnull(r_Creator.get("data"))) {...
m_CreatePayment.put("account_id",v_NominalAccountID); //info m_CreatePayment; // r_CreatePayment = zoho.books.createRecord("customerpayments",v_BooksOrgID,m_CreatePayment,"zbooks"); //info r_CreatePayment; if(r_CreatePayment.get("message") != null) {...