Convert Lead When Contact or Deal is Created in Zoho CRM

Поделиться
HTML-код
  • Опубликовано: 12 май 2024
  • In this video, I show you how to automate lead conversion in Zoho CRM using a Deluge function. Learn to automatically convert leads into contacts when a contact is created by matching email addresses. This tutorial simplifies your sales process, prevents duplicate contact efforts, and ensures cleaner data. We will set up workflow rules, write the Deluge custom function script, and test the automation for errors. Perfect for those looking to optimize their Customer Relationship Management (Zoho CRM) system. Don’t forget to like, comment, and subscribe for more CRM tips and tutorials!
  • ХоббиХобби

Комментарии • 3

  • @forgedbyfirecoaching
    @forgedbyfirecoaching 2 месяца назад

    Thanks for this info. I'm going to use this for my marketing!

  • @KristinM-he8gz
    @KristinM-he8gz 2 месяца назад

    Thank you! How would I find lead record by Phone?

    • @Cali_Matt
      @Cali_Matt  2 месяца назад

      Here's the code to search for the phone (instead of email) ->
      // Make sure you grab the Contacts Phone
      contact_phone = contact_record.get("Phone");
      // To search lead by phone number
      search_leads = zoho.crm.searchRecords("Leads", "(Phone:equals:" + contact_phone + ")");
      Good luck!