If you want to create your own custom workflow

If you want to create your own custom workflow

Workflow: RingOutCustom

create custom function RingOutActionCustom
must have the following arguments: "recordId" and "module"



  • static text for module's value (in our case Leads no quotes "" necessary, just plain text Leads or Deals)

  • Map recordId to the desired module's record id (Leads.Lead Id as seen on screenshot)

    in the function paste the following code:

Notes
void automation.RingActionCustom(String recordId,String module)
{
m = {"nameSpace":"dialpadringautodialer"};
apikeyresp = zoho.crm.invokeConnector("crm.zapikey",m);
zapikey = apikeyresp.get("response");
resp = invokeurl
[
 url :url
 type :POST
 parameters:({"module":module,"recordId":recordId}).toString()
];
info resp;
}





    • Related Articles

    • How to Disable Dialpad Ring Auto Dialer for Some Leads

      Workflow: RingCustom create custom function RingActionCustom must have the following arguments: "recordId" and "module" static text for module's value (in our case Leads no quotes "" necessary, just plain text Leads or Deals) Map recordId to the ...
    • How to install the Dialpad Ring Auto Dialer Extension for Zoho CRM

      1. Install the extension from the Zoho CRM Marketplace 2. Select the profiles or users that should have access to this extension 3. Select the plan or Free trial as shown below: 4. You will have to follow the instructions on the next page how to ...