Slack: Send Message
Send a message to a Slack channel or user via native OAuth integration. Supports mrkdwn formatting, threads, and DMs. No Pipedream proxy required. Ideal for: alerts, notifications, updates, team communication.
Catalog action Integrations slack
Send a message to a Slack channel or user via native OAuth integration. Supports mrkdwn formatting, threads, and DMs. No Pipedream proxy required. Ideal for: alerts, notifications, updates, team communication.
At a Glance
| Field | Value |
|---|---|
| Action ID | slack-send-message |
| Category | Integrations |
| Connector | slack |
| Requires gas | No |
| Funds movement | None declared |
| Tags | slack, messaging, notification, write, chat |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
channel | string | Yes | Target channel ID, user ID, or group ID to send the message to |
text | string | Yes | Message text to send. Supports Markdown: bold, italic, 'code', links |
thread_ts | string | No | Message timestamp to reply to (creates a thread) |
unfurl_links | boolean | No | Enable link unfurling (default: false) |
unfurl_media | boolean | No | Enable media unfurling (default: false) |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | Whether the message was sent successfully |
data | object | No | Slack API response data |
Examples
json{ "type": "slack-send-message", "payload": { "channel": "example-channel", "text": "Workflow completed" }, "children": [], "connector": { "type": "slack", "id": "conn_slack" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/slack-send-message/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "channel": "example-channel", "text": "Workflow completed" }}'
Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.
