IntegrationsSlackActions
List Slack channel members
List member user ids for a public or private channel.
channels.members · Slack · v1
Details
Scopes
channels:readgroups:read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channel_id | string | Yes | minLength 1; maxLength 64 |
cursor | string | No | minLength 1; maxLength 512 |
limit | integer | No | minimum 1; maximum 200 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
members | array<string> | Yes | — |
members[] | string | Yes | — |
next_cursor | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"channel_id": {
"type": "string",
"minLength": 1,
"maxLength": 64
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
},
"limit": {
"type": "integer",
"minimum": 1,
"maximum": 200
}
},
"required": [
"channel_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"members": {
"type": "array",
"items": {
"type": "string"
}
},
"next_cursor": {
"type": "string"
}
},
"required": [
"members"
]
}