Skip to main content
GET
/
api
/
v1
/
automation
curl "https://your-collabase.ch/api/v1/automation" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "auto-abc123",
    "name": "Notify on Test Failure",
    "isEnabled": true,
    "triggerType": "COLLABASE_EVENT",
    "spaceId": "space-001",
    "createdAt": "2026-03-01T10:00:00.000Z"
  }
]
Returns all automations that the current user created or has access to through space membership. Optionally filter to a specific space.

Query parameters

spaceId
string
Filter automations to those linked to a specific space ID. Omit to return all automations across all spaces.

Response

[].id
string
Automation ID.
[].name
string
Automation name.
[].description
string
Optional description.
[].isEnabled
boolean
Whether the automation is active.
[].triggerType
string
COLLABASE_EVENT | WEBHOOK | SCHEDULE | MANUAL
[].spaceId
string
ID of the owning space, if set.
[].createdAt
string
ISO 8601 creation timestamp.
curl "https://your-collabase.ch/api/v1/automation" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "auto-abc123",
    "name": "Notify on Test Failure",
    "isEnabled": true,
    "triggerType": "COLLABASE_EVENT",
    "spaceId": "space-001",
    "createdAt": "2026-03-01T10:00:00.000Z"
  }
]