from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateBatchExecutionRequest(name="Example")
result = client.batches.executions.update_by_id("execution_id_value", body=body)
print(result){
"id": "<string>",
"batch_definition_id": "<string>",
"customer_id": "<string>",
"project_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"status": "<string>",
"agent_urn": "<string>",
"batch_spec_json": {},
"agent_spec_json": {},
"input_datasource_id": "<string>",
"output_datasource_id": "<string>",
"input_overrides": {},
"total_items": 123,
"succeeded": 123,
"failed": 123,
"end_time": "2023-11-07T05:31:56Z",
"error": "<string>",
"items": [
{
"input_data_element_id": "<string>",
"filename": "<string>",
"status": "<string>",
"error": "<string>",
"output_artifacts": [
{}
],
"attempts": 1
}
]
}from meibel import MeibelClient
client = MeibelClient(api_key="your-api-key")
# Create request body
body = UpdateBatchExecutionRequest(name="Example")
result = client.batches.executions.update_by_id("execution_id_value", body=body)
print(result){
"id": "<string>",
"batch_definition_id": "<string>",
"customer_id": "<string>",
"project_id": "<string>",
"start_time": "2023-11-07T05:31:56Z",
"status": "<string>",
"agent_urn": "<string>",
"batch_spec_json": {},
"agent_spec_json": {},
"input_datasource_id": "<string>",
"output_datasource_id": "<string>",
"input_overrides": {},
"total_items": 123,
"succeeded": 123,
"failed": 123,
"end_time": "2023-11-07T05:31:56Z",
"error": "<string>",
"items": [
{
"input_data_element_id": "<string>",
"filename": "<string>",
"status": "<string>",
"error": "<string>",
"output_artifacts": [
{}
],
"attempts": 1
}
]
}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.
Runtime-only patch fields. Identity, definition link, and overrides are immutable.
Execution status
Execution end time
Total items in batch
Number of succeeded items
Number of failed items
Output datasource ID
Per-item results
Overall error message
Successful Response
Response shape for a single batch execution. The legacy batch_spec_json / agent_spec_json / agent_urn / input_datasource_id fields are kept for client compatibility (DEL-1376 §5.5) — they are reconstructed from the linked BatchDefinition by the router, not stored on the execution row.
Execution ID — also the Temporal workflow ID for direct queries
FK to the BatchDefinition this execution ran against
Optional override for the tool's parameters schema
Optional override for the tool's parameters schema
Overall error message
Per-item results (populated on completion by status callback)
Show child attributes
Was this page helpful?