Skip to main content

Overview

The Channel API lets integrations send text messages to workspace channels. Messages support Markdown formatting and are commonly used for notifications, bot replies, workflow updates, and alerts.
The Copera Node.js SDK, CLI, and GitHub Action all support channel messaging. Choose your preferred tool below.

Quick Start

# Send a message to a channel
curl -X POST https://api.copera.ai/public/v1/chat/channel/{channelId}/send-message \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Hello from my integration!",
    "name": "Bot Name"
  }'

Available Operations

OperationDescription
Send MessageSend a formatted text message to a channel

Next Steps