invite_to_channel
Invite multiple users to a Slack channel using their user IDs to manage and organize workspace communication efficiently. Simplifies channel participation by automating the invitation process.
Instructions
Invite users to a Slack channel.
Args: channel: Channel ID users: Comma-separated list of user IDs
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel | Yes | ||
users | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"title": "Channel",
"type": "string"
},
"users": {
"title": "Users",
"type": "string"
}
},
"required": [
"channel",
"users"
],
"type": "object"
}