No. As of now, you can only share a ticket with a single department. But you can associate the Share Ticket action five times with your workflow rule, sharing a ticket with a different department each time.
How do I create templates for instant messaging (IM)?
To create templates for instant messaging, follow the steps given below:
Go to Setup > Channels > Instant Messaging > Canned Messages.
Click Create Canned Message at the top.
On the Canned Message page, enter a name, tags, and a message.
Note: You can insert placeholders in the Message field.
Click Save.
Can automatic notifications be sent to customers through IM channels?
Yes, automatic notifications can be sent to customers via IM channels, such as WeChat, Line, WhatsApp, and Telegram by associating the Notify via Instant Messaging custom action. Notifications will not be associated with tickets, but they can be viewed within the applicable IM account.
Example: You can send booking confirmations, notices about subscription renewals, and reminders of due dates for periodic payments via IM channels.
Can agents send automatic responses to the tickets through IM channels?
Yes, agents can send automatic responses to tickets through IM channels, such as WeChat, Line, WhatsApp, and Telegram by associating the Reply via Instant Messaging custom action with their workflow rules.
Example: When a customer inquires about a shipment, you can send them an auto response with the product code, delivery date, status, and tracking code. This can be especially useful if the customer sends an inquiry outside the organization's business hours.
Can I set up automated replies to the emails I receive from a customer?
Yes, whenever you receive an email from a customer, you can set up a default text reply, eliminating the need for manual replies. You can use the Send Email Reply action to draft your reply and set it to send automatically.
Example: Let's say an issue arises and causes system downtime. This will likely result in emails from multiple customers. It's not possible to reply to each customer manually, so you can create a workflow rule associating custom actions from the Custom Actions Gallery. Using this workflow rule, you can automatically trigger a reply email to the customers.
What are incoming webhooks, and how do I insert an incoming webhook URL in the Cliq Notification?
Incoming webhooks are used for posting messages in other applications. Incoming webhook creation provides you with a unique URL to which you can send a text message as a JSON payload.
Click on your profile icon and select Bots & Tools under the Cliq Options section.
Select your preferred bot.
Click Edit Handlers and scroll down. Press Edit Code below the Incoming Webhook Handler of your selected bot.
Remove the existing code in the Response Object field and insert the following code:
text = body.get("message"); // Retrieve the message from the request's payload.
text = text.replaceAll(" "," "); // Replace the non-breaking space value with a string of empty spaces.
text = text.replaceAll("<br />","\n"); // Replace the break element with the new line element.
text = text.replaceAll("<b>","*"); // Replace the HTML bold element (<b>) with cliq's markdown support (*).
text = text.replaceAll("</b>","*"); // Replace the HTML bold element (</b>) with cliq's markdown support (*).
text = text.replaceAll("<i>","_"); // Replace the HTML italic element with cliq's markdown support (_).
text = text.replaceAll("</i>","_"); // Replace the HTML italic element with cliq's markdown support (_).
text = text.replaceAll("<h1>","# "); // Replace the HTML Heading1 element (h1) with the Heading1 element (#) of cliq's markdown support.
text = text.replaceAll("</h1>","# "); // Replace the HTML Heading1 element (h1) with the Heading1 element (#) of cliq's markdown support.
text = text.replaceAll("<h3>","### "); // Replace the HTML Heading3 element (h3) with the Heading3 element (###) of cliq's markdown support.
text = text.replaceAll("</h3>","### "); // Replace the HTML Heading3 element (h3) with the Heading3 element (###) of cliq's markdown support.
text = text.replaceAll("<[^>]*>",""); // Clear the element syntax.
response.put("text",text);

Click Save.
On the left panel, select Webhook Tokens and click Generate New Token.
Copy the new token that is generated.
Append the copied token to the incoming webhook endpoint URL as below:

This URL will be your incoming webhook URL.