GET /v1/users/{id}
Retrieve a User
Get a user by ID or fully qualified name
GET
GET /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.
Retrieve a User
Get a single user by its unique ID or fully qualified name.Get by ID
UUID of the user to retrieve.
Comma-separated list of fields to include (e.g.,
teams,roles,personas,domains,follows,owns).Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/users/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the user (e.g.,
aaron_johnson0).Comma-separated list of fields to include:
teams, roles, personas, domains, follows, owns.Include
all, deleted, or non-deleted entities.GET /v1/users/{id}
Returns
Returns a user object with all requested fields populated.Response
Unique identifier for the user (UUID format).
Username.
Fully qualified name (same as
name for users).Human-readable display name.
Email address of the user.
Whether this user is a bot account.
Whether this user has admin privileges.
Teams the user belongs to. Only included when
fields contains teams.Roles assigned to the user. Only included when
fields contains roles.Personas assigned. Only included when
fields contains personas.Domain assignments. Only included when
fields contains domains.Entities the user follows. Only included when
fields contains follows.Entities owned by the user. Only included when
fields contains owns.Version number for the entity.
Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this user |
404 | NOT_FOUND | User with given ID or FQN does not exist |