Skip to main content
POST
/
api
/
v1
/
automation
/
trigger
/
{webhookId}
curl -X POST "https://your-collabase.ch/api/v1/automation/trigger/wh-abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "environment": "production",
    "deployedBy": "github-actions"
  }'
{ "executionId": "exec-new001" }
Triggers an automation that uses the Webhook trigger type. Does not require authentication — the webhookId acts as a secret. Keep it private.

Path parameters

webhookId
string
required
The unique webhook ID from the automation’s trigger node configuration.

Request body

Send any JSON object. The entire body is available in the automation as {{payload.*}}.

Response

executionId
string
The execution ID for the triggered run.
curl -X POST "https://your-collabase.ch/api/v1/automation/trigger/wh-abc123" \
  -H "Content-Type: application/json" \
  -d '{
    "environment": "production",
    "deployedBy": "github-actions"
  }'
{ "executionId": "exec-new001" }