invite_to_channel
Add users to a Slack channel using their user IDs to expand team collaboration and communication within your workspace.
Instructions
Invite users to a channel
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel | Yes | Channel ID | |
| users | Yes | Array of user IDs to invite |
Input Schema (JSON Schema)
{
"properties": {
"channel": {
"description": "Channel ID",
"type": "string"
},
"users": {
"description": "Array of user IDs to invite",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"channel",
"users"
],
"type": "object"
}