remove_role
Remove a specific role from a user in a Discord server by providing server ID, user ID, and role ID. Simplify role management with this integration tool.
Instructions
Remove a role from a user
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| role_id | Yes | Role ID to remove | |
| server_id | Yes | Discord server ID | |
| user_id | Yes | User to remove role from | 
Input Schema (JSON Schema)
{
  "properties": {
    "role_id": {
      "description": "Role ID to remove",
      "type": "string"
    },
    "server_id": {
      "description": "Discord server ID",
      "type": "string"
    },
    "user_id": {
      "description": "User to remove role from",
      "type": "string"
    }
  },
  "required": [
    "server_id",
    "user_id",
    "role_id"
  ],
  "type": "object"
}