curl -X GET "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_xYz123ABCD..."
[
{
"id": "auto-abc123",
"name": "Notify on test failure",
"description": "Sends a notification when a critical test case fails",
"isEnabled": true,
"triggerType": "COLLABASE_EVENT",
"category": "test-management",
"spaceId": "4d71eb4d-3638-4173-8698-d883a6c2243f",
"createdAt": "2025-03-15T10:00:00.000Z"
}
]
Return all automation rules visible to the authenticated user.
curl -X GET "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_xYz123ABCD..."
[
{
"id": "auto-abc123",
"name": "Notify on test failure",
"description": "Sends a notification when a critical test case fails",
"isEnabled": true,
"triggerType": "COLLABASE_EVENT",
"category": "test-management",
"spaceId": "4d71eb4d-3638-4173-8698-d883a6c2243f",
"createdAt": "2025-03-15T10:00:00.000Z"
}
]
spaceId query parameter to filter results to a specific space.
COLLABASE_EVENT, WEBHOOK, SCHEDULE, MANUAL.test-management).null for global automations.curl -X GET "https://your-collabase.ch/api/v1/automation" \
-H "Authorization: Bearer cba_live_xYz123ABCD..."
[
{
"id": "auto-abc123",
"name": "Notify on test failure",
"description": "Sends a notification when a critical test case fails",
"isEnabled": true,
"triggerType": "COLLABASE_EVENT",
"category": "test-management",
"spaceId": "4d71eb4d-3638-4173-8698-d883a6c2243f",
"createdAt": "2025-03-15T10:00:00.000Z"
}
]
Was this page helpful?