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" }
Fire a WEBHOOK-type automation by sending a POST request to its unique URL.
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" }
webhookId acts as a secret. Keep it private.
{{payload.*}}.
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" }
Was this page helpful?