IntegrationsSlackActions
Create Slack channel
Create a public or private Slack channel.
channels.create · Slack · v1
Details
Scopes
channels:managegroups:write
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
name | string | Yes | minLength 1; maxLength 80; pattern ^[a-z0-9_-]+$ |
is_private | boolean | No | — |
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": {
"name": {
"type": "string",
"minLength": 1,
"maxLength": 80,
"pattern": "^[a-z0-9_-]+$"
},
"is_private": {
"type": "boolean"
}
},
"required": [
"name"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"is_private": {
"type": "boolean"
}
},
"required": [
"id",
"name"
]
}