Python
from meibelai import Meibelai import os with Meibelai( api_key_header=os.getenv("MEIBELAI_API_KEY_HEADER", ""), ) as m_client: res = m_client.datasources.metadata_model_catalog.get_metadata_model_catalog_entry(model_id="<id>") # Handle response print(res)
{ "model_id": "<string>", "name": "<string>", "scope": "<string>", "fields": [ { "name": "<string>", "type": "<string>", "description": "<string>" } ], "description": "<string>", "customer_id": "<string>", "project_id": "<string>", "created_by": "<string>", "updated_by": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z" }
Successful Response
MetadataModelCatalogEntry
Show child attributes
Was this page helpful?