Skip to main content
FuseFuse
IntegrationsSlackActions

Update Slack user group members

Replace the full membership of a Slack user group with the provided user ids. This is a full replacement, not a partial add or remove.

Agent markdown

usergroups.users.update · Slack · v1

Details

Risk
Write
Idempotency
Safe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=true, openWorld=true

Scopes

  • usergroups:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
usergroup_idstringYesminLength 1; maxLength 64
user_idsarray<string>YesminItems 1; maxItems 500
user_ids[]stringYesminLength 1; maxLength 64

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
usersarray<string>Yes
users[]stringYes
user_countintegerNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "usergroup_id": {
      "type": "string",
      "minLength": 1,
      "maxLength": 64
    },
    "user_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "maxLength": 64
      },
      "minItems": 1,
      "maxItems": 500
    }
  },
  "required": [
    "usergroup_id",
    "user_ids"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "users": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "user_count": {
      "type": "integer"
    }
  },
  "required": [
    "id",
    "users"
  ]
}