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

# Platform Connections

> Get platform connections for an organization

<Note>This endpoint requires Admin role.</Note>

## Path Parameters

<ParamField path="id" type="string" required>
  Organization UUID
</ParamField>

## Response

Array of platform connections.

<ResponseField name="data" type="array">
  <Expandable title="Connection object">
    <ResponseField name="id" type="string">
      Connection UUID
    </ResponseField>

    <ResponseField name="platform" type="string">
      Platform type: `slack`, `teams`, `whatsapp`
    </ResponseField>

    <ResponseField name="platformTeamId" type="string">
      Platform-specific team/workspace ID
    </ResponseField>

    <ResponseField name="metadata" type="object">
      Platform-specific metadata (team name, etc.)
    </ResponseField>

    <ResponseField name="connectedAt" type="string">
      Connection timestamp
    </ResponseField>
  </Expandable>
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.hitler.app/api/organizations/org-uuid-123/connections" \
    -H "Authorization: Bearer YOUR_TOKEN"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "conn-uuid-123",
      "platform": "slack",
      "platformTeamId": "T1234567890",
      "metadata": {
        "teamName": "Acme Corp Workspace"
      },
      "connectedAt": "2024-01-10T15:30:00.000Z"
    }
  ]
  ```
</ResponseExample>
