Slack: List Members in Channel
List all member user IDs in a Slack channel via native OAuth integration. Returns an array of user IDs. Supports pagination for large channels. Ideal for: membership auditing, channel analytics, access verification.
Catalog action Integrations slack
List all member user IDs in a Slack channel via native OAuth integration. Returns an array of user IDs. Supports pagination for large channels. Ideal for: membership auditing, channel analytics, access verification.
At a Glance
| Field | Value |
|---|---|
| Action ID | slack-list-members-in-channel |
| Category | Integrations |
| Connector | slack |
| Requires gas | No |
| Funds movement | None declared |
| Tags | slack, integration, read, team |
Payload Schema
| Field | Type | Required | Description |
|---|---|---|---|
channel | string | Yes | Channel ID to list members from |
limit | number | No | Max members 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-members-in-channel", "payload": { "channel": "example-channel" }, "children": [], "connector": { "type": "slack", "id": "conn_slack" }}
bashcurl -X POST "https://api.b3os.org/v1/actions/slack-list-members-in-channel/test" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "inputs": { "channel": "example-channel" }}'
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.
