Slack: Reply to Message
Reply to a specific message in a Slack thread via native OAuth integration. Creates a threaded reply using the parent message timestamp. Ideal for: threaded discussions, follow-up alerts, conversational workflows.
Catalog action Integrations slack
Reply to a specific message in a Slack thread via native OAuth integration. Creates a threaded reply using the parent message timestamp. Ideal for: threaded discussions, follow-up alerts, conversational workflows.
At a Glance
| Field | Value |
|---|---|
| Action ID | slack-reply-to-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 | Channel ID where the thread exists |
text | string | Yes | Reply message text. Supports Markdown: bold, italic, 'code', links |
thread_ts | string | Yes | Timestamp of the parent message to reply to |
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 | - |
data | object | No | - |
Examples
json{ "type": "slack-reply-to-message", "payload": { "channel": "example-channel", "text": "Workflow completed", "thread_ts": "example-thread_ts" }, "children": [], "connector": { "type": "slack", "id": "conn_slack" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/slack-reply-to-message/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "channel": "example-channel", "text": "Workflow completed", "thread_ts": "example-thread_ts" }}'
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.
