Configure Plugs in SalesIQ and save yourself the trouble of writing logic more than once!
What are Plugs?
- Plugs in SalesIQ is a feature that can be used to connect the Codeless bot with different applications (Zoho apps and external apps) with the help of user-defined inputs and outputs.
- They can also be used to perform a user's own logic or control the flow of the Codeless bot.
- This function can be implemented using Deluge Scripts or webhooks.
Why do you need plugs?
- Plugs in Zoho SalesIQ are mainly used to perform operations with inputs from the codeless bot and provide user defined outputs to the codeless bot. For example, visitor data like email, phone, etc. can be set as the plug's input and that data can be pushed to any third party services (say lead generation) and the data from the third party service can be given as the plug's output (say lead id, etc).
- With plugs, you can save yourself from the trouble of writing or building logic more than once. These plugs can be created once and used in multiple places in the bot.
Here's a real time example to help you understand how plugs work. Let's take an e-commerce website. In this scenario, lead creation is a crucial task. For this purpose, you can configure a plug that collects the visitor's name and email and generates a unique Lead ID and use it inside the Codeless bot in order to avoid doing this task time and again.
Sample Code:
- name = "";
- if(session.containsKey("name"))
- {
- name = session.get("name").get("value");
- }
- email = "";
- if(session.containsKey("email"))
- {
- email = session.get("email").get("value");
- }
- response = Map();
- if(name.isNull() || email.isNull())
- {
- response.put("leadid","-1");
- return response;
- }
- leadInfo = {
- "Last_Name":name,
- "Email":email
- };
- createResponse = zoho.crm.createRecord("Leads", leadInfo);
- response.put("leadid", createResponse.get("id"));
- return response;
How can you add these Plugs inside SalesIQ?
To add a plug inside SalesIQ,
- In the SalesIQ dashboard, navigate to Settings > Developers > Plugs.
- Inside the Plugs dashboard, click Add.
- Give your plug a name and also add a description and then click Create Plug.
- Then, configure the handler.
- Click on Parameters. Inside the Parameter Configurations section, add the required input and output parameters.
- You can test every plug by clicking on Test in the Plug Preview section.
- Once you are done configuring the plug, click Publish.
Sticky Posts
Plug Sample #5 - Read and write values/data in a Google sheet with Zobot
We all know google sheets are one of the widely used spreadsheet software. It helps us to make data-driven decisions. When connecting the Zobot with sheets, the bot can display values/data from a spreadsheet, like the available stock details (Item price,
Why messenger-first approach will transform your customer engagement and improve trust
Many competent businesses fail to thrive because of poor customer engagement strategies. They have an innovative team, excellent products, and services to offer. But without engaging with their customers, it gets difficult to know what the customers want;
5 powerful ways to boost e-commerce customer engagement with Zobot
E-commerce has been a game changer for the past decade. It has drastically influenced the way people purchase. This pandemic broke all the existing rules by embracing automation and making the customer experience more personalized. Chatbots play a crucial
How can you make your support more efficient by adopting Tiered support?
One of the main issues most businesses face is handling support conversations as they expand. As the business scales up, the chat load also increases exponentially. So, it becomes hard for your existing operators to handle all of the chats, hiring new
Engage and support visitors better with all new Zoho SalesIQ V2.0!
By Addressing more than 120+ customer requests, adding 23 new features, 27 feature enhancements, and including 4 custom tools; we are finally ready and thrilled to introduce our new version of Zoho SalesIQ that takes your visitor engagement, sales, support
Zoho Pagesense Resources
Zoho SalesIQ Resources
Zoho TeamInbox Resources
Zoho DataPrep Resources
Zoho CRM Plus Resources
Zoho Books Resources
Zoho Subscriptions Resources
Zoho Desk Resources
Zoho Projects Resources
Zoho Sprints Resources
Qntrl Resources
Zoho Creator Resources
Zoho WorkDrive Resources
Zoho Campaigns Resources
Zoho CRM Resources
Zoho Show Resources
Writer Get Started. Write Away!
Writer is a powerful online word processor, designed for collaborative work.