PATCH /v1/dataProducts/{id}
Update a Data Product
Update data product properties using JSON Patch
PATCH
PATCH /v1/dataProducts/{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 Data Product
Update a data product’s properties using JSON Merge Patch. You can update by ID or by fully qualified name.Update by ID
UUID of the data product to update.
Update by Name
UsePATCH /v1/dataProducts/name/{fqn} to update by fully qualified name.
Fully qualified name of the data product (e.g.,
Marketing.CustomerInsights).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 owner references.
Updated list of expert references.
PATCH /v1/dataProducts/{id}
Returns
Returns the updated data product object with the new version number.Response
Unique identifier for the data product (UUID format).
Data product name.
Fully qualified name in format
domain.dataProductName.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 data product |
404 | NOT_FOUND | Data product with given ID or FQN does not exist |
409 | CONFLICT | Concurrent modification detected |