PATCH /v1/services/databaseServices/{id}
Update a Database Service
Update database service properties using JSON Patch
PATCH
PATCH /v1/services/databaseServices/{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 Database Service
Update a database service’s properties using JSON Merge Patch. You can update by ID or by fully qualified name.Update by ID
UUID of the database service to update.
Update by Name
UsePATCH /v1/services/databaseServices/name/{fqn} to update by fully qualified name.
Fully qualified name of the database service (e.g.,
snowflake_prod).Body Parameters
Send a JSON object with the fields to update. Only provided fields are changed.Updated description in Markdown format.
Updated display name.
Updated connection configuration.
Updated list of owner references.
Updated classification tags.
Updated domain FQN.
PATCH /v1/services/databaseServices/{id}
Returns
Returns the updated database service object with the new version number.Response
Unique identifier for the database service (UUID format).
Database service name.
Fully qualified name of the service.
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 database service |
404 | NOT_FOUND | Database service with given ID or FQN does not exist |
409 | CONFLICT | Concurrent modification detected |