users_update
Update existing user details like name, email, or active status. Requires admin permissions and only changes provided fields.
Instructions
Update user details.
Updates information for an existing user. Requires admin permissions.
Workflow tips:
Only provided fields will be updated
Use users/get to retrieve current values first
Email must remain unique if changed
Cannot update own admin status
Common use cases:
Update user name: { "id": 123, "name": "John Smith" }
Change user email: { "id": 123, "email": "newemail@company.com" }
Deactivate user: { "id": 123, "active_flag": false }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | ID of the user to update | |
| name | No | Name of the user | |
| No | Email address of the user | ||
| active_flag | No | Whether the user is active |