Zoho Cliq bot integration tutorial

Zoho Cliq bot integration tutorial

Follow this steps to integrate a Zoho Cliq bot to your MightyChat Agent

Step 1: Activate your MightyChat Agent

On your MightyChat Dashboard, go to your Agent settings and click on “Integrations”. Then, on Zoho Cliq, click “Connect”

If this redirects you to your Zoho Cliq portal, this means the activation was successfully, and you can continue to step 2.

Step 2: Create and connect your Cliq bot to MightyChat

Now, on your Cliq portal, go to settings, and click on “Bots & Tools”

Now click on “Create Bot”

Set name, description, and access level to your bot. We recommend to do no add your bot to channels, because it is prepared for 1 to 1 chat only.

Optionally set an image and status messages for your bot, and click on “Save Bot”

Now, on Message Handler, click on “Edit Handler”

Now, delete the existing code and add the following, replacing "agent_id" with your MightyChat Agent ID. You can get it on your Agent Settings. Then, click on “Save”:


payload = Map();
payload.put("message",message);
payload.put("user",user);
// your chatbot info
payload.put("mightychat_chatbot_id","agent_id");
headers = Map();
headers.put("Content-Type","application/json");
mightychat_response = invokeurl
[
	url :"https://mightychat-cliq.azurewebsites.net/webhook"
	type :POST
	parameters:toString(payload)
	headers:headers
];
mightychat_message = mightychat_response.getJSON("mightychat_message");
response = Map();
response.put("text",mightychat_message);
return response;

Now you can send text messages to your Cliq bot on the right side of the page. When you write your first message, you’ll see a prompt like this. Clikc on “Proceed to allow”

And you are done! Now you can chat with your agent both in the test area and the main cliq portal!

If you have any question or issue, feel free to contact us on the support section.


    • Related Articles

    • SalesIQ Zobot integration tutorial

      SalesIQ Zobot integration tutorial Follow this steps to integrate your MightyChat agent with your SalesIQ Zobot. This will allow you to deploy AI agent on: Website Instagram account WhatsApp business account Step 1. Create and prepare your Zobot On ...
    • Integrating Zoho Commerce with MightyChat

      This guide will walk you through the process of integrating your Zoho Commerce store with MightyChat, allowing your customers to interact with your business and get product information directly through the chat interface. Before you begin: Ensure you ...
    • Train your chatbot with your zoho books information

      Log in to Mightychat and go to the Account page. On the Account page at the bottom of the page look for the Connections section. 3. Click on the button with the text Connect. As shown in the picture. 4. After the above action, the application will ...
    • Improve your chatbot responses

      With Mightychat, you have several options to address this issue and improve your chatbot's responses. Here's how you can do it. Improve chatbot instructions The instructions shapes your chatbot's behavior and responses. To ensure your bot only ...