Post to Chat as admin
Table of Contents
Note:
- This task is applicable to all Zoho Services except Zoho Creator.
- Each time the zoho.cliq.postToChatAsAdmin integration task is executed, it triggers an API request in the back-end. This call is deducted from the external calls limit available for the service from which the task is executed, based on your pricing plan.
- Only actual executions that receive a response (whether success or failure) are counted, not the number of times the task appears in the script. For example, if zoho.cliq.postToChatAsAdmin integration task is placed inside a for each task that iterates five times, the number of external calls consumed will be five, even though the task appears only once in the script.
Overview
This task is used to post a message as an admin to any of your contacts, using the chat ID of the recipient in Zoho Cliq. The recipient will receive your message and the sender will be displayed as the admin.
This task is based on Zoho Cliq API - Post message in a chat.
Note: The first member in the organization to save a task is the admin.
Syntax
<variable> = zoho.cliq.postToChatAsAdmin(<chat_ID>, <message>, <connection>);
where,
| Parameter | Data type | Description |
|---|---|---|
| <variable> | KEY-VALUE | is the variable which holds the response message returned by Zoho Cliq. |
| <chat_ID> | TEXT (or) NUMBER | is the chat ID of the recipient |
| <message> | TEXT KEY-VALUE FILE LIST of FILES | is the message to be posted. The different types of content that can be posted in a chat window is found here. |
| <connection> | TEXT | specifies the link name of the Zoho Cliq connection. Note:
|
Example
The following script posts a message Hello in the chat window of the intended recipient.
response = zoho.cliq.postToChatAsAdmin("2230642502702656126","Hello", "cliq_connection");
(or)
response = zoho.cliq.postToChatAsAdmin("2230642502702656126",{"text":"Hello"}, "cliq_connection");
where,
responseis a KEY-VALUE response returned by Zoho Cliq, that represents the status of the executed task
"2230642502702656126"is a TEXT that represents the chat ID of the recipient
"text"is the key of TEXT data type which represents the message to be posted
"Hello"is the TEXT message to be posted
"cliq_connection"is the TEXT that represents the name of the connection
Response Format
The success response returned is of the following format.
{"status":"success"}
Related Links
- Zoho Cliq API
- Common error codes can be viewed here