set_channel_topic
Update and manage the topic of a Slack channel by specifying the channel ID and the new topic text for clear and organized communication within your workspace.
Instructions
Set the topic for a Slack channel.
Args: channel: Channel ID topic: New topic text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
topic | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"topic": {
"title": "Topic",
"type": "string"
}
},
"required": [
"channel",
"topic"
],
"type": "object"
}