from meibelai import Meibelai
import os
with Meibelai(
api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),
) as m_client:
res = m_client.datasources.tag.update_tag_table_info(datasource_id="<id>", table_name="<value>", description="reckon as before lovingly")
# Handle response
print(res)
{
"message": "<string>"
}
datasources.tag
Update Tag Table Info
PUT
/
datasource
/
{datasource_id}
/
tag_table_info
/
{table_name}
Python (SDK)
from meibelai import Meibelai
import os
with Meibelai(
api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""),
) as m_client:
res = m_client.datasources.tag.update_tag_table_info(datasource_id="<id>", table_name="<value>", description="reckon as before lovingly")
# Handle response
print(res)