Skip to main content
FuseFuse
IntegrationsSlackActions

List Slack channel members

List member user ids for a public or private channel.

Agent markdown

channels.members · Slack · v1

Details

Risk
Read
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=true, destructive=false, idempotent=true, openWorld=true

Scopes

  • channels:read
  • groups:read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channel_idstringYesminLength 1; maxLength 64
cursorstringNominLength 1; maxLength 512
limitintegerNominimum 1; maximum 200

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
membersarray<string>Yes
members[]stringYes
next_cursorstringNo

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"
  ]
}