Slack: List Thread Replies
List all replies in a Slack message thread via native OAuth integration. Returns the parent message and all threaded replies. Supports pagination. Ideal for: thread monitoring, conversation analysis, reply tracking, thread summaries.
Catalog action Integrations slack
List all replies in a Slack message thread via native OAuth integration. Returns the parent message and all threaded replies. Supports pagination. Ideal for: thread monitoring, conversation analysis, reply tracking, thread summaries.
At a Glance
| Field | Value |
|---|---|
| Action ID | slack-list-replies |
| Category | Integrations |
| Connector | slack |
| Requires gas | No |
| Funds movement | None declared |
| Tags | slack, messaging, read, chat |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
channel | string | Yes | Channel ID containing the thread |
ts | string | Yes | Timestamp of the parent message |
limit | number | No | Max replies to return (default: 200, max: 1000) |
cursor | string | No | Pagination cursor for next page |
Result Schema
| Field | Type | Required | Description |
|---|---|---|---|
success | boolean | Yes | - |
data | object | No | - |
Examples
json{ "type": "slack-list-replies", "payload": { "channel": "example-channel", "ts": "example-ts" }, "children": [], "connector": { "type": "slack", "id": "conn_slack" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/slack-list-replies/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "channel": "example-channel", "ts": "example-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.
