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

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

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

result = client.datasources.tables.update_descriptions("datasource_id_value", body=body)
print(result)
[
  {
    "table_name": "<string>",
    "description": "<string>",
    "columns": [
      {
        "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

Body

application/json

Bulk update of table descriptions on a datasource.

tables
TagTableUpdateItem · object[]
required

One entry per table to update

Response

Successful Response

table_name
string
required

Table name as defined on the datasource

description
string | null

Human-authored description of what this table represents

columns
TagColumn · object[] | null

Columns on the table — only populated when explicitly requested via include_columns