Users
A User represents a person or bot account in your organization. Users can be assigned to teams, given roles, and associated with domains for governance purposes.Entity schema follows the OpenMetadata Standard.
Fully Qualified Name
The FQN format for a user is simply the username:aaron_johnson0
API Endpoints
| Method | Endpoint | Description |
|---|---|---|
PUT | /v1/users | Create or update a user |
POST | /v1/users | Create a user (POST variant) |
GET | /v1/users | List users |
GET | /v1/users/{id} | Get by ID |
GET | /v1/users/name/{fqn} | Get by FQN |
PATCH | /v1/users/{id} | Update by ID |
PATCH | /v1/users/name/{fqn} | Update by name |
DELETE | /v1/users/{id} | Delete by ID |
DELETE | /v1/users/name/{fqn} | Delete by name |
PUT | /v1/users/restore | Restore soft-deleted user |
GET | /v1/users/{id}/versions | List versions |
GET | /v1/users/{id}/versions/{version} | Get specific version |