Skip to main content
GET
/
api
/
v1
/
automation
/
connections
curl "https://your-collabase.ch/api/v1/automation/connections" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "conn-abc",
    "name": "Production Slack",
    "connectorId": "slack",
    "authType": "apiKey",
    "visibility": "SPACE",
    "createdAt": "2026-03-01T00:00:00.000Z"
  }
]
Returns all connections the user owns or that have been shared with them (SPACE or GLOBAL visibility).

Response

[].id
string
Connection ID.
[].name
string
Display name.
[].connectorId
string
e.g. slack, github, jira.
[].authType
string
Auth method used.
[].visibility
string
PRIVATE | SPACE | GLOBAL
[].createdAt
string
ISO 8601 creation timestamp.
curl "https://your-collabase.ch/api/v1/automation/connections" \
  -H "Authorization: Bearer cba_live_..."
[
  {
    "id": "conn-abc",
    "name": "Production Slack",
    "connectorId": "slack",
    "authType": "apiKey",
    "visibility": "SPACE",
    "createdAt": "2026-03-01T00:00:00.000Z"
  }
]