PATCH /v1/glossaryTerms/{id}
Update a Glossary Term
Update glossary term properties using JSON Patch
PATCH
PATCH /v1/glossaryTerms/{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 Glossary Term
Update a glossary term’s properties using JSON Merge Patch. You can update by ID or by fully qualified name.Update by ID
UUID of the glossary term to update.
Update by Name
UsePATCH /v1/glossaryTerms/name/{fqn} to update by fully qualified name.
Fully qualified name of the glossary term (e.g.,
BusinessGlossary.Revenue).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 list of synonym strings.
Updated list of related term FQNs.
Updated list of owner references.
Updated classification tags.
Updated visual styling.
Updated domain FQN.
PATCH /v1/glossaryTerms/{id}
Returns
Returns the updated glossary term object with the new version number.Response
Unique identifier for the glossary term (UUID format).
Glossary term name.
Fully qualified name of the glossary term.
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 glossary term |
404 | NOT_FOUND | Glossary term with given ID or FQN does not exist |
409 | CONFLICT | Concurrent modification detected |