set_channel_purpose
Define or update the purpose of a Slack channel by specifying the channel ID and the new purpose text. Simplify channel management and ensure clarity for team collaboration.
Instructions
Set the purpose for a Slack channel.
Args: channel: Channel ID purpose: New purpose text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
purpose | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"purpose": {
"title": "Purpose",
"type": "string"
}
},
"required": [
"channel",
"purpose"
],
"type": "object"
}