View as Markdown
Sendbird AI chabot icon

Sendbird AI chabot ACTION

Send Bot Message

Sends a bot message to a group channel. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Sendbird AI chabot 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: "sendbird_ai_chabot-send-bot-message",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sendbird_ai_chabot: { authProvisionId: "apn_xxxxxxx" },
    botId: "Bot ID",
    channelUrl: "Channel URL",
  },
})

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
botId Bot ID string
The identifier of a bot
Required Dynamic
channelUrl Channel URL string
Specifies the URL of the channel
Required Dynamic
message Message string
Specifies the content of the message sent by the bot
Required

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
sendbird_ai_chabot-send-bot-message
Version
0.0.2
App
Sendbird AI chabot
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes