Trigger types
Collabase Events
These triggers fire on activity inside Collabase. Select one from the Collabase category when adding a trigger node.All payload fields are available in downstream nodes using
{payload.fieldName} — for example, {payload.taskTitle} or {payload.oldStatus}.Schedule (Cron)
A schedule trigger fires on a recurring timer. Define the schedule using cron syntax or use the visual picker in the builder.Cron expression examples
Schedule triggers always run in UTC unless you set a timezone in the trigger configuration. Set the Timezone field to your local timezone (e.g.
Europe/Zurich) to have expressions evaluated in that zone.Webhook
A webhook trigger fires when an external system sends aPOST request to the automation’s unique URL. Collabase generates one URL per automation — no additional configuration is required to receive requests.
Getting the webhook URL
1
Open the trigger node
Open your automation and click the trigger node. The node panel opens on the right.
2
Copy the URL
Copy the Webhook URL shown in the configuration panel. It looks like:
https://your-collabase.example/api/v1/automation/auto-abc123/webhook3
Configure the sending system
Paste the URL into your external service’s webhook settings. The service will send a
POST request to this URL when its event occurs.Example request
{payload.*}:
{payload.event}→deployment.completed{payload.environment}→production{payload.version}→2.4.1
Webhook verification
Set a Secret in the trigger configuration to protect your endpoint. When set, Collabase checks theX-Webhook-Secret header on every incoming request and rejects requests with a missing or incorrect value.
Manual
A manual trigger fires when a user explicitly starts the automation. This is useful for workflows you want to control — one-off tasks, testing, or on-demand processes that should not run automatically.Triggering manually in the UI
1
Open the automation
Navigate to Automation in your Space sidebar and open the automation.
2
Click Run
Click the Run button in the top-right of the automation builder. The automation fires immediately.
Triggering via the API
You can also trigger a manual automation via the Collabase REST API:inputs are available in downstream nodes as {payload.fieldName}.

