> ## Documentation Index
> Fetch the complete documentation index at: https://docs.collabase.ch/llms.txt
> Use this file to discover all available pages before exploring further.

# List connections

> List all connector connections accessible to the authenticated user.

Returns all connections the user owns or that have been shared with them (SPACE or GLOBAL visibility).

## Response

<ResponseField name="[].id" type="string">Connection ID.</ResponseField>
<ResponseField name="[].name" type="string">Display name.</ResponseField>
<ResponseField name="[].connectorId" type="string">e.g. `slack`, `github`, `jira`.</ResponseField>
<ResponseField name="[].authType" type="string">Auth method used.</ResponseField>
<ResponseField name="[].visibility" type="string">`PRIVATE` | `SPACE` | `GLOBAL`</ResponseField>
<ResponseField name="[].createdAt" type="string">ISO 8601 creation timestamp.</ResponseField>

<RequestExample>
  ```bash theme={"dark"}
  curl "https://your-collabase.ch/api/v1/automation/connections" \
    -H "Authorization: Bearer cba_live_..."
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"dark"}
  [
    {
      "id": "conn-abc",
      "name": "Production Slack",
      "connectorId": "slack",
      "authType": "apiKey",
      "visibility": "SPACE",
      "createdAt": "2026-03-01T00:00:00.000Z"
    }
  ]
  ```
</ResponseExample>
