Skip to main content
POST
/
api
/
v1
/
executions
/
job-executions
Create Job Execution
curl --request POST \
  --url https://control-plane.kubiya.ai/api/v1/executions/job-executions \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "execution_id": "<string>",
  "entity_type": "<string>",
  "prompt": "<string>",
  "trigger_type": "<string>",
  "job_id": "<string>",
  "entity_id": "<string>",
  "trigger_metadata": {}
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Body

application/json

Request to create a job execution record

execution_id
string
required
entity_type
string
required
prompt
string
required
trigger_type
string
required
job_id
string | null
entity_id
string | null
trigger_metadata
Trigger Metadata · object

Response

Successful Response