Python
from meibelai import Meibelai import os with Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""), ) as m_client: res = m_client.tag.get_all_tag_column_info(datasource_id="<id>", table_name="<value>", offset=0, limit=10, sort_by=None, sort_order="<value>") # Handle response print(res)
[ { "datasource_id": "<string>", "table_name": "<string>", "name": "<string>", "description": "<string>", "dtype": "<string>", "is_key": true, "is_indexed": true, "engineered_features": [ "<string>" ] } ]
Number of items to skip
x >= 0
Maximum number of items to return
1 <= x <= 100
Field to sort by
Sort order (asc or desc)
Successful Response
The response is of type TagColumnInfo · object[].
TagColumnInfo · object[]