POST
/
project_datasource_ids
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.get_all_datasource_ids(customer_id="<id>", project_id="<id>")

    # Handle response
    print(res)
[
  "<string>"
]

Authorizations

Meibel-API-Key
string
header
required

Body

application/json

GetAllDatasourceIdsRequest

Response

Successful Response

The response is of type string[].