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

# Get Broken Integration Alerts

> Whether you are emailed when a connection stops working, and who receives it

Read the broken-integration alert setting: whether an email goes out when one of your
connections stops working, whether whoever connected it and the workspace admins get it,
and the extra addresses it also goes to. Change it with
[Update Broken Integration Alerts](/api-reference/update-broken-integration-alerts).

<Info>
  **On by default.** A workspace that never saved the setting reads as `enabled: true`,
  `notify_defaults: true`, no extra recipients, and `is_default: true`. When the person who
  connected an integration is no longer a member of the workspace, the admins alone get it.
</Info>

## Query

<ParamField query="provider" type="string">
  Optional provider slug, such as `hubspot` or `google_calendar`. Also returns
  `integration`: who that connection's broken email goes to today, with who connected it
  (or `null`), the admins, and the full recipient list.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.clustr-ai.com/api/public/notifications/broken-integrations?provider=hubspot" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  requests.get(
      "https://api.clustr-ai.com/api/public/notifications/broken-integrations",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
      params={"provider": "hubspot"},
  )
  ```

  ```javascript JavaScript theme={null}
  await fetch("https://api.clustr-ai.com/api/public/notifications/broken-integrations?provider=hubspot", {
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": {
      "enabled": true,
      "notify_defaults": true,
      "recipients": ["ops@example.com"],
      "is_default": false,
      "updated_at": "2026-09-18T09:12:44Z",
      "integration": {
        "provider": "hubspot",
        "connected_by": { "user_id": "3f7a9d2e-0c4b-4e1f-8a6d-5b2c9e1f0a47", "email": "marine.b@example.com", "name": "Marine B" },
        "admins": [{ "user_id": "9a1e4c7b-2d3f-4b8a-9c6e-1f0d2a3b4c5d", "email": "admin@example.com", "name": "Sam Admin" }],
        "recipients": ["marine.b@example.com", "admin@example.com", "ops@example.com"]
      }
    }
  }
  ```
</ResponseExample>
