Slack
SLACKBOT_CREATE_CHANNEL_BASED_CONVERSATION
Creates a new public or private Slack channel with a unique name; the channel can be org-wide, or team-specific if `team_id` is given (required if `org_wide` is false or not provided).
Remote slackbot
Other tools also called SLACKBOT_CREATE_CHANNEL_BASED_CONVERSATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"title": "Name",
"examples": [
"project-alpha",
"marketing-campaign-q3",
"team-devs-internal"
],
"description": "Name for the new channel. Must be unique, 80 characters or fewer, lowercase, without spaces or periods, and may contain letters, numbers, and hyphens."
},
"team_id": {
"type": "string",
"title": "Team Id",
"examples": [
"T123ABCDEFG"
],
"description": "Workspace (team) ID for channel creation (e.g., T123ABCDEFG). Required if `org_wide` is `false` or not set."
},
"org_wide": {
"type": "boolean",
"title": "Org Wide",
"description": "Set to `true` to make the channel available org-wide. If `false` or not set, `team_id` is required."
},
"is_private": {
"type": "boolean",
"title": "Is Private",
"description": "Set to `true` to make the channel private, or `false` for public."
},
"description": {
"type": "string",
"title": "Description",
"description": "Optional description for the channel (e.g., 'Discussion about Q4 marketing strategies')."
}
}
}