curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/executions \
--header 'Authorization: Bearer <token>'{
"job_id": "<string>",
"total_count": 123,
"executions": [
{
"execution_id": "<string>",
"trigger_type": "<string>",
"status": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"duration_ms": 123,
"error_message": "<string>",
"trigger_metadata": {}
}
]
}Get execution history for a job.
Query Parameters:
curl --request GET \
--url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/executions \
--header 'Authorization: Bearer <token>'{
"job_id": "<string>",
"total_count": 123,
"executions": [
{
"execution_id": "<string>",
"trigger_type": "<string>",
"status": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z",
"duration_ms": 123,
"error_message": "<string>",
"trigger_metadata": {}
}
]
}Enter your Kubiya API token (format: Bearer
Was this page helpful?