Custom API Integration with CRM and Zoho Creator

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ก.ค. 2024
  • In this tutorial, we guide you through the advanced integration techniques between Zoho CRM and Creator, focusing on custom API connections and setting up a two-way sync for custom modules and fields.
    🚨 UPCOMING LIVE STREAMS 🚨
    Zoho Thrive Full Product Overview
    July 16, 2024, 10:00 AM Pacific Standard Time
    club.zenatta.com/c/zenatta-ev...
    Don't Miss Any Zoho News, Tips, Events & More
    Subscribe To Our Newsletter - zenatta.com/newsletter/
    💥 Zoho Team Training Programs 💥
    Train Your Team In Less Than A Week!
    👉zenatta.com/training/?...
    🎬 TIME STAMPS 🎬
    0:00 Intro
    2:07 Setup A Workflow Inside Zoho CRM
    27:41 Setup A Workflow Inside Zoho Creator
    👇 SUBSCRIBE 👇
    ️ ♦️ TH-cam - / @zenatta
    ️ ♦️ Newsletter - zenatta.com/newsletter/
    ️ ♦️ LinkedIn - / zenatta
    ️ ♦️ Twitter - / zenattaconsult
    ️ ♦️ Facebook - / zenattaconsulting
    🧠 OTHER RESOURCES 🧠
    ️ ♦️Resource Library - zenatta.com/resources/
    ️ ♦️Events - club.zenatta.com/c/zenatta-ev...
    ️ ♦️Club Zenatta - club.zenatta.com/
    💻 ABOUT US 💻
    At Zenatta, we are Zoho Experts and a Zoho Premium Partner that understands how to build systems that your employees will use. Giving you the information you need to make informed decisions about your business.
    Our goal through this channel is to deliver useful tips and guides to help better your Zoho experience.
    🛑 NEED ZOHO HELP? 🛑
    Visit - zenatta.com/
    #ZohoCreator #ZohoCRM #Zenatta
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 9

  • @fafelo30
    @fafelo30 4 หลายเดือนก่อน +1

    I am a Zoho Certified Business user but next week I will try Stage 2 Developer Associate, I have practiced the 23 videos from this series to reinforce my understanding. Thanks, Zenatta Team!

  • @jorgemarcichaguilera3621
    @jorgemarcichaguilera3621 5 หลายเดือนก่อน

    Awesome information, I'm starting with Zoho Creator and this video has been very useful, thanks a lot!

  • @DariaReznikova-uf7wx
    @DariaReznikova-uf7wx 21 วันที่ผ่านมา

    Say hello! Suggest, is it possible to connect Zoho Recruite by API with the site and our own design? In the interface, I see only Forms, and the possibility to create a website, but there everything is based on templates, and we want to use our design

  • @user-dh3ht9yo9m
    @user-dh3ht9yo9m 6 หลายเดือนก่อน

    Follow up question to a great video: how would you make this work with a custom module? The integration field is used, but custom modules aren't an option. Would you just create two fields, one to hold the crm record id, and one to hold the record name? Thanks!

  • @user-tz9co3hy8r
    @user-tz9co3hy8r 6 หลายเดือนก่อน

    hi there - when attempting to edit the argument in argument mapping to set AccountID to the merge field, I only have options to select the "type" from a picklist of (int, string, date, float, bool) -- any advice on what configuration steps I need to take to be able ot enter an actual value?

    • @user-tz9co3hy8r
      @user-tz9co3hy8r 6 หลายเดือนก่อน +1

      Never mind; watched Greg's intro videos and am covered now that I understand how to invoke the dynamic argument prompts; thanks for the great stuff!

  • @davidthornton7603
    @davidthornton7603 6 หลายเดือนก่อน +1

    What prevents this from resulting in an endless loop where a record update in CRM invokes a record update in Creator which invokes a record update in CRM which invokes a record update in Creator…

    • @JoshOliver1
      @JoshOliver1 6 หลายเดือนก่อน

      Good question! and it is definitely something you should be careful with. The reason why a loop does not occur with the method I display is that I am not triggering CRM workflows when running my creator function. To trigger CRM workflows you need to append additional parameters to the integrated function. {"trigger": {"workflow","blueprint","approval"}}.
      ex: zoho.crm.updaterecord("Contacts", contactid, {"trigger": {"workflow","blueprint","approval"}}).
      As long as those parameters are not appended to the function, it should not trigger the workflows in the CRM when the API is called. Which will prevent the loop from occurring.
      If you do want to trigger the workflows, then you will need to add logic in the function to check a date-time field to see when the last update occurred to prevent the function from running if it has already run within the last 30 seconds or so.
      I hope that helps!

    • @davidthornton7603
      @davidthornton7603 6 หลายเดือนก่อน +1

      Yes. Thanks for the detailed explanation (and video).