curl -X POST "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint Report",
"triggerType": "SCHEDULE",
"triggerConfig": { "cron": "0 9 * * MON" }
}'
{
"id": "auto-xyz789",
"name": "Sprint Report",
"isEnabled": false,
"triggerType": "SCHEDULE",
"createdAt": "2026-04-01T08:00:00.000Z"
}
Create a new automation.
curl -X POST "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint Report",
"triggerType": "SCHEDULE",
"triggerConfig": { "cron": "0 9 * * MON" }
}'
{
"id": "auto-xyz789",
"name": "Sprint Report",
"isEnabled": false,
"triggerType": "SCHEDULE",
"createdAt": "2026-04-01T08:00:00.000Z"
}
COLLABASE_EVENT | WEBHOOK | SCHEDULE | MANUAL{}.{}.false for new automations.curl -X POST "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_..." \
-H "Content-Type: application/json" \
-d '{
"name": "Sprint Report",
"triggerType": "SCHEDULE",
"triggerConfig": { "cron": "0 9 * * MON" }
}'
{
"id": "auto-xyz789",
"name": "Sprint Report",
"isEnabled": false,
"triggerType": "SCHEDULE",
"createdAt": "2026-04-01T08:00:00.000Z"
}
Was this page helpful?