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

Headers

x-webhook-signature
string | null

Path Parameters

webhook_path
string
required

Body

application/json

Schema for webhook trigger payload

parameters
object

Parameters to substitute in prompt template

config_override
object | null

Optional config overrides for this execution

metadata
object | null

Additional metadata for this webhook trigger

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