GET
/
datasource
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_datasource_ids(offset=0, limit=10, sort_by="<value>", sort_order="<value>")

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

Authorizations

Meibel-API-Key
string
header
required

Query Parameters

offset
integer
default:0

Number of items to skip

Required range: x >= 0
limit
integer
default:10

Maximum number of items to return

Required range: 1 <= x <= 100
sort_by
string | null

Field to sort by

sort_order
string | null

Sort order (asc or desc)

Response

200
application/json

Successful Response

The response is of type string[].