Skip to main content
POST
/
api
/
v1
/
jobs
/
{job_id}
/
trigger
Trigger Job
curl --request POST \
  --url https://control-plane.kubiya.ai/api/v1/jobs/{job_id}/trigger \
  --header 'Content-Type: application/json' \
  --data '{
  "parameters": {},
  "config_override": {}
}'
{
  "job_id": "<string>",
  "execution_id": "<string>",
  "workflow_id": "<string>",
  "status": "<string>",
  "message": "<string>"
}

Path Parameters

job_id
string
required

Body

application/json

Schema for manually triggering a job

parameters
object

Parameters to substitute in prompt template (e.g., {{param_name}})

config_override
object | null

Optional config overrides for this execution

Response

Successful Response

Schema for job trigger response

job_id
string
required
execution_id
string
required
workflow_id
string
required
status
string
required
message
string
required