from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.datasources.ingest.get_status("datasource_id_value")
print(result){
"datasource_id": "<string>",
"status": "not_started",
"started_at": "<string>",
"completed_at": "<string>",
"methods": []
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
result = client.datasources.ingest.get_status("datasource_id_value")
print(result){
"datasource_id": "<string>",
"status": "not_started",
"started_at": "<string>",
"completed_at": "<string>",
"methods": []
}Documentation Index
Fetch the complete documentation index at: https://docs.meibel.ai/llms.txt
Use this file to discover all available pages before exploring further.
Successful Response
Status of the most recent ingest run for a datasource.
ID of the datasource
Overall run status
not_started, running, completed, failed, canceled, terminated, timed_out, unknown ISO 8601 timestamp when this run started
ISO 8601 timestamp when this run finished — null while still running
Per-method progress and counts for this run
Show child attributes
Was this page helpful?