View as Markdown
Zoho Cliq icon

Zoho Cliq ACTION

Send Bot Message

Send message to a bot. See documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Zoho Cliq account once, then configure and run Send Bot Message from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "zoho_cliq-send-bot-message",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    zoho_cliq: { authProvisionId: "apn_xxxxxxx" },
    botName: "Bot Name",
    text: "Text",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Send Bot Message inputs
Property Type Description
botName Bot Name string
The bot name. To get the bot's unique name, go to Settings → Integrations → Bots → Click on the bot name → API EndPoint. For example, if your bot API endpoint is https://cliq.zoho.com/company/12345/api/v2/bots/pipedreambot/message, then your bot name is pipedreambot.
Required
text Text string
The text message
Required
broadcast Broadcast boolean
To broadcast message to all the bot subscribers.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
zoho_cliq-send-bot-message
Version
0.0.4
App
Zoho Cliq
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes