curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"parameters": {},
"config_override": {}
}
'{
"job_id": "<string>",
"execution_id": "<string>",
"workflow_id": "<string>",
"status": "<string>",
"message": "<string>"
}Manually trigger a job execution.
Request Body:
curl --request POST \
--url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/trigger \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"parameters": {},
"config_override": {}
}
'{
"job_id": "<string>",
"execution_id": "<string>",
"workflow_id": "<string>",
"status": "<string>",
"message": "<string>"
}Enter your Kubiya API token (format: Bearer
Was this page helpful?