GET
/
datasource
/
{datasource_id}
/
tag_config
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.tag.get_tag_config(datasource_id="<id>")

    # Handle response
    print(res)
{
  "datasource_id": "<string>",
  "description": "<string>",
  "logical_group_regex": "<string>",
  "working_bucket": "<string>",
  "db_path": "<string>",
  "created_by": "<string>",
  "updated_by": "<string>"
}

Authorizations

Meibel-API-Key
string
header
required

Path Parameters

datasource_id
string
required

Response

200
application/json

Successful Response

TagConfig