Slack
SLACK_UPDATE_AN_EXISTING_SLACK_USER_GROUP
Updates an existing Slack User Group, which must be specified by an existing `usergroup` ID, with new optional details such as its name, description, handle, or default channels.
Remote slack
Other tools also called SLACK_UPDATE_AN_EXISTING_SLACK_USER_GROUP?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "New name for the User Group. Must be unique among User Groups.\nExample: \"Q4 Marketing\""
},
"handle": {
"type": "string",
"description": "New mention handle. Must be unique among channels, users, and User Groups.\nExample: \"marketing-team-alpha\""
},
"channels": {
"type": "string",
"description": "Comma-separated encoded channel IDs to set as default channels.\nExample: \"C1234567890,C2345678901\""
},
"usergroup": {
"type": "string",
"description": "Encoded ID of the existing User Group to update.\nExample: \"S0615G0KT\""
},
"description": {
"type": "string",
"description": "New short description for the User Group.\nExample: \"Team responsible for Q4 marketing campaigns.\""
},
"include_count": {
"type": "boolean",
"description": "If true, include the number of users in the User Group in the response.\nExamples:\n true\n false"
}
}
}