IntegrationsSlackActions
List Slack channels
List public and private channels.
channels.list · Slack · v1
Details
Scopes
channels:readgroups:read
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
channels | array<object> | Yes | — |
channels[] | object | Yes | additionalProperties false |
channels[].id | string | Yes | — |
channels[].name | string | Yes | — |
channels[].is_private | boolean | No | — |
next_cursor | string | No | — |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"channels": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"is_private": {
"type": "boolean"
}
},
"required": [
"id",
"name"
]
}
},
"next_cursor": {
"type": "string"
}
},
"required": [
"channels"
]
}