Assuming createrecord is required, the following 25 results were found.
m_CreateBooksItem.put("track_batch_number",true); // // let's try creating it r_CreateItem = zoho.inventory.createRecord("items",v_BooksOrgID,m_CreateBooksItem,"zinventory"); info "ITEM CREATE RESPONSE FOR " + v_ItemID; info r_CreateItem.get("message");...
} else { r_InvoiceSO = zoho.books.createRecord("invoices",v_BooksOrgID,m_InvoiceDetails,"abzohobooks"); } Note(s): There are 2 other payment terms which is by setting payment terms to 0 which will result in a "Due on Receipt"....
= r_BooksEstimate.get("estimate_id").toLong(); } } } } if(v_BooksEstimateID == 0) { r_BooksEstimate = zoho.books.createRecord("estimates",v_BooksOrgID,m_CreateEstimate,"zbooks"); } else { r_BooksEstimate =...
// // check what we're sending info m_NewTask; // // create the task in CRM r_NewResp = zoho.crm.createRecord("Tasks",m_NewTask, m_Blank, "systemcrm"); // // output response of task creation from CRM info r_NewResp; Step 2: Setup workflow to escalate...
by using the API and deluge function invokeURL rather than the usual shortcode of zoho.crm.updateRecord() or zoho.crm.createRecord(). How? This is somewhere in the official documentation but here's the bits that I need: Updating a record with PUT (note...