Skip to main content
PUT
/
datasources
/
{datasource_id}
/
tables
/
{table_name}
/
columns
Python
from meibel import MeibelClient

client = MeibelClient(api_key="your-api-key")

# Create request body
body = UpdateTagColumnsRequest(name="Example")

result = client.datasources.tables.update_column_descriptions("datasource_id_value", "table_name_value", body=body)
print(result)
[
  {
    "column_name": "<string>",
    "type": "<string>",
    "description": "<string>"
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

datasource_id
string
required
table_name
string
required

Body

application/json

Bulk update of column descriptions on a single table.

columns
TagColumnUpdateItem · object[]
required

One entry per column to update on the target table

Response

Successful Response

column_name
string
required

Column name as defined in the source table

type
string | null

SQL data type of the column (e.g. 'varchar', 'integer')

description
string | null

Human-authored description of what this column represents