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_tag_column_info(datasource_id="<id>", table_name="<value>", column_name="<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>" ] }
Successful Response
TagColumnInfo