IntegrationsSlackActions
Get Slack channel
Get one Slack channel by id.
channels.get · 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 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
id | string | Yes | — |
name | string | Yes | — |
is_private | boolean | No | — |
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"
]
}