Slack
SLACK_INITIATES_CHANNEL_BASED_CONVERSATIONS
DEPRECATED: Initiates a public or private channel-based conversation. Use `create_channel` instead.
Remote slack
Other tools also called SLACK_INITIATES_CHANNEL_BASED_CONVERSATIONS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name of the public or private channel to create\nExample: \"mychannel\""
},
"team_id": {
"type": [
"string",
"null"
],
"default": null,
"description": "encoded team id to create the channel in, required if org token is used\nExample: \"T1234567890\""
},
"is_private": {
"type": [
"boolean",
"null"
],
"default": null,
"description": "Create a private channel instead of a public one\nExample: true"
}
}
}