Assuming workflow is required, the following 35 results were found.
and populates an email field based on when a contact is selected in a lookup field. Why? I could do a normal automation/workflow on save of the record, but the client wants the email to be prefilled in the field as soon as a contact is selected. How?...
This is an article documenting how to update Creator from a workflow written in a Deluge Script held in ZohoCRM. Why? I've also started this article to document an issue we encountered where our code was as per the documentation provided, and the...
I have used this task which contradicts documentation: In a custom function In an Action item in Report In a schedule workflow Source(s): Zoho Creator - Insert rows in Subform (via Deluge Script)
submitted even if tax at line item level is 0. Triggers when using REST API v2.1 When using the REST API (even v2.0), the workflow/approval/blueprint triggers will all run by default. Set this to an empty list [] to prevent/stop CRM triggers from...
.toLong(). Say I have an integration field on my form called "CRM Account" with field link name "Account"; Then I have a workflow on user input of the field to save this directly to the record; You would think the following would work: r_Details =...
the param name to file (this is important) r_CreatorPhoto.setParamName("file"); // // upload the photo to CRM (and prevent workflows from running) v_Endpoint2 = "https://www.zohoapis.com/crm/v2/Products/" + v_CrmProductID +...
to Saturday. The form I have looks something like the following: and displays as something like this: The code I create a workflow that when the decision box "Copy Monday to the Other Days" is clicked it runs the following deluge script: // only run if...
hide Attachments.Document_Name; hide Attachments.Downloaded; Here's the code I use when a "Addition of a row" workflow is triggered on that subform. This makes sure I don't download it again and create a new Creator record to hold the same file but in a...
This is a quick article to note down some code used in Zoho Recruit. This particular bit of code will run on a workflow when a Candidate is modified, and it tallies all the candidates belonging to the same school and updates some number fields on the...
"zcrm" which has the necessary scope(s) to read from and write to a CRM quote record. The code: This is the code used in a workflow triggered within ZohoCRM when a Quote is created or modified: // // initialize v_BooksOrgID = 123456789;...
oapis.com/creator/v2.1/data"+zoho.appuri+"report/"+v_ReportLinkName+"/"+v_RecordID+"/"+v_FileUploadFieldName+"/upload?skip_workflow=['all']"; info v_Endpoint; // // upload the file m_Params = Map(); m_Params.put("file", f_TestFile); // // this will work...
+ " " + m_Payload.toString() ] // // to cut even more time, we could store it directly in ZohoCRM and have a CRM workflow/automation forward it to Zoho Creator. m_WebhookLog = Map(); m_WebhookLog.put("Name","Shopify - Inventory Update - " +...
of any errors with the intention to be able to correct any inconsistencies themselves. How? We're going to add a scheduled workflow on a daily basis at 1am in the morning every day. This will be added to the client's Zoho People instance which will...
from eBay is sent to ZohoCRM (Market Deletion Webhook) Purpose: eBay Marketplace Account Deletion/Closure Notifications Workflow Inputs: String crmAPIRequest (Webhook) Outputs: JSON String crmAPIResponse Date Created: 2025-03-13 (Joel Lipman) - Initial...
we need to copy over all the custom values to the new line items. How? This is about an hour's work doing it on a CRM workflow (save of record) but here we're going to do it in client script: Additionally, the line items will be sourced from the quote...