curl -X POST "https://your-collabase.ch/api/v1/automation/auto-abc123/trigger" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"payload": {}
}'
{
"executionId": "exec-xyz789"
}
Manually trigger an automation by its ID.
curl -X POST "https://your-collabase.ch/api/v1/automation/auto-abc123/trigger" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"payload": {}
}'
{
"executionId": "exec-xyz789"
}
isEnabled: true) to trigger it. Triggering a disabled automation returns a 400 error. You must have at least Member permissions in the space that owns the automation.triggerType of MANUAL or WEBHOOK. Automations with scheduled or event-based trigger types can also be triggered this way for testing purposes.{} if no input data is needed.curl -X POST "https://your-collabase.ch/api/v1/automation/auto-abc123/trigger" \
-H "Authorization: Bearer cba_live_xYz123ABCD..." \
-H "Content-Type: application/json" \
-d '{
"payload": {}
}'
{
"executionId": "exec-xyz789"
}
Was this page helpful?