PUT /v1/tables/{id}/joins
Table Relationships
Manage joins, data models, columns, and entity relationships for tables
PUT
PUT /v1/tables/{id}/joins
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.
Table Relationships
Manage join information, data models, column listings, and entity relationships for tables.Add Joins
PUT /v1/tables/{id}/joins
Record join information between this table and other tables.
UUID of the table.
Start date for the join period (ISO 8601 format).
Number of days the join data covers.
Array of column join records.
Set Data Model
PUT /v1/tables/{id}/dataModel
Set the data model (dbt or similar) associated with this table.
UUID of the table.
Type of data model:
DBT, LookML.Description from the data model.
SQL query or transformation logic from the model.
Column descriptions and metadata from the data model.
Get Columns
GET /v1/tables/{id}/columns
Retrieve column information with optional pagination.
UUID of the table.
Maximum number of columns to return.
Offset for pagination.
PUT /v1/tables/{id}/joins
Returns
Add joins returns the join data associated with the table. Set data model returns the updated table with data model attached. Get columns returns a paginated list of column definitions.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission |
404 | NOT_FOUND | Table does not exist |
400 | BAD_REQUEST | Invalid join data or data model format |