PATCH /v1/users/{id}
Update a User
Update user properties using JSON Patch
PATCH
PATCH /v1/users/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Update a User
Update a user’s properties using JSON Merge Patch. You can update by ID or by fully qualified name.Update by ID
UUID of the user to update.
Update by Name
UsePATCH /v1/users/name/{fqn} to update by fully qualified name.
Fully qualified name of the user (e.g.,
aaron_johnson0).Body Parameters
Send a JSON object with the fields to update. Only provided fields are changed.Updated display name.
Updated description in Markdown format.
Updated email address.
Updated admin status.
Updated list of team references.
Updated list of role references.
Updated domain FQN.
Updated profile information.
PATCH /v1/users/{id}
Returns
Returns the updated user object with the new version number.Response
Unique identifier for the user (UUID format).
Username.
Fully qualified name (same as
name for users).Updated description.
Incremented version number.
Error Handling
| Code | Error Type | Description |
|---|---|---|
400 | BAD_REQUEST | Invalid JSON patch or malformed request |
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to update this user |
404 | NOT_FOUND | User with given ID or FQN does not exist |
409 | CONFLICT | Concurrent modification detected |