Skip to main content
FuseFuse
IntegrationsSlackActions

Get Slack channel

Get one Slack channel by id.

Agent markdown

channels.get · 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

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
namestringYes
is_privatebooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channel_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    }
  },
  "required": [
    "channel_id"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "is_private": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name"
  ]
}