Help with deluge script

Help with deluge script

            Hi Community, this is my first Deluge script. I've pieced it together from reading various articles
I want to use it in a workflow to 
1 Convert a lead to a contact
2. Create a record in a custom module
Below is what I have got so far but it does not fire in the workflow trigger.
I am not sure what I have to change but a little guidance would very much be appreciated



void automation.Convert_insurance_referral()
{
    try
    {
        leadId = Lead_ID;

        if(leadId == null)
        {
            info "Error: input.id is null.";
            return;
        }

        // get lead record
        lead = zoho.crm.getRecordById("Leads", leadId);

        if(lead == null || lead.isEmpty())
        {
            info "Error: No Lead found for ID: " + leadId;
            return;
        }

        // convert lead
        convertMap = map();
        convertMap.put("overwrite", true);

        converted = zoho.crm.convertLead(leadId, convertMap);

        if(converted == null || converted.isEmpty())
        {
            info "Error: Lead conversion returned no response for Lead ID: " + leadId;
            return;
        }

        contactId = converted.get("Contacts");

        if(contactId == null)
        {
            info "Error: Lead was converted, but no Contact ID was returned. Response: " + converted.toString();
            return;
        }

        // create Initial Assessment record
        assessmentMap = map();

        contactLookup = map();
        contactLookup.put("id", contactId);

assessmentMap.put("Contact", contactId);
        assessmentMap.put("Contact", contactLookup);
        assessmentMap.put("Insurance_Provider", lead.get("Insurance_Provider"));
        assessmentMap.put("Case_ID", lead.get("Case_ID"));
        assessmentMap.put("Case_Handler", lead.get("Case_Handler"));
        assessmentMap.put("Approved_Treatments", lead.get("Approved_Treatments"));
        assessmentMap.put("Venue", lead.get("Venue"));
        assessmentMap.put("Assessment_Date", lead.get("Assessment_Date"));
        assessmentMap.put("Assessment_Status", lead.get("Assessment_Status"));
        assessmentMap.put("Assigned_Therapist", lead.get("Assigned_Therapist"));

        // mandatory field
        assignedTherapist = lead.get("Assigned_Therapist");
        if(assignedTherapist != null)
        {
            assessmentMap.put("Record_Name", assigned_Therapist);
        }
        else
        {
            assessmentMap.put("Record_Name", "Assessment for Contact " + contactId);
        }

        createResp = zoho.crm.createRecord("Initial_Assessments", assessmentMap);

        if(createResp == null || createResp.isEmpty())
        {
            info "Error: Initial_Assessments record creation returned no response.";
            return;
        }

        if(createResp.get("id") != null)
        {
            info "Success: Initial Assessment created. Record ID: " + createResp.get("id");
        }
        else
        {
            info "Warning: Record creation response did not include an ID. Response: " + createResp.toString();
        }
    }
    catch (e)
    {
        info "Exception occurred in Convert_insurance_referral: " + e.toString();
    }
}
    • Sticky Posts

    • Function #46: Auto-Calculate Sales Margin on a Quote

      Welcome back everyone! Last week's function was about displaying the discount amount in words. This week, it's going to be about automatically calculating the sales margin for a particular quote, sales order or an invoice. Business scenario Where there is sales, there's also evaluation and competition between sales reps. A healthy rivalry helps to better motivate your employees to do smart work and close deals faster and more efficiently. But how does a sales rep get evaluated? 90% of the time, it's
    • Zoho CRM Functions 53: Automatically name your Deals during lead conversion.

      Welcome back everyone! Last week's function was about automatically updating the recent Event date in the Accounts module. This week, it's going to be about automatically giving a custom Deal name whenever a lead is converted. Business scenario Deals are the most important records in CRM. After successful prospecting, the sales cycle is followed by deal creation, follow-up, and its subsequent closure. Being a critical function of your sales cycle, it's good to follow certain best practices. One such
    • User Tips: Auto-Create Opportunity/Deal upon Quote Save (PART 1)

      Problem: We use quotes which convert to sales orders but Users / Sales Reps do not create opportunities / deals and go straight to creating a quote. This leads to poor reporting. Implementing this solution improves reporting and makes it easier for users.
    • Custom Function : Automatically send the Quote to the related contact

      Scenario: Automatically send the Quote to the related contact.  We create Quotes for customers regularly and when we want to send the quote to the customer, we have to send it manually. We can automate this, using Custom Functions. Based on a criteria, you can trigger a workflow rule and the custom function associated to the rule and automatically send the quote to customer through an email. Please note that the quote will be sent as an inline email content and not as a PDF attachment. Please follow
    • Function #50: Schedule Calls to records

      Welcome back everyone! Last week's function was about changing ownership of multiple records concurrently. This week, it's going to be about scheduling calls for records in various modules. Business scenario Calls are an integral part of most sales routines.. Sales, Management, Support, all the branches of the business structure would work in cohesion only through calls. You could say they are akin to engine oil, which is required by the engine to make all of it's components function perfectly. CRM