# Get subscription config

Retrieve the subscription channel configuration for a dashboard.

Source: https://statusdashboard.com/docs/api/status-dashboards/dashboards/subscriptions/get

`GET /app/dashboards/{id}/subscriptions`

Returns the current subscription channel configuration for a dashboard.

***

## Path parameters
| Parameter | Description                |
| --------- | -------------------------- |
| `id`      | The UUID of the dashboard. |

***

## Request
See [API Basics](/docs/api) for required headers.

This endpoint takes no request body.

***

## Sample request
```bash
curl https://api.statusdashboard.com/app/dashboards/a1b2c3d4-e5f6-7890-abcd-ef1234567890/subscriptions \
  -H "Authorization: Bearer bcf847abf5c6:def456"
```

## Sample response
**Status: `200 OK`**

```json
{
  "email":   { "enabled": true },
  "sms":     { "enabled": false },
  "webhook": { "enabled": true },
  "teams":   { "enabled": false },
  "gchat":   { "enabled": false }
}
```

***

## Response fields
Same field meanings as [Update subscription config](/docs/api/status-dashboards/dashboards/subscriptions/update#request-body).

| Field             | Type    | Description                                                                           |
| ----------------- | ------- | ------------------------------------------------------------------------------------- |
| `email.enabled`   | boolean | Customer intent: whether email subscriptions are enabled on this dashboard.           |
| `sms.enabled`     | boolean | Customer intent: whether SMS subscriptions are enabled on this dashboard.             |
| `webhook.enabled` | boolean | Customer intent: whether webhook subscriptions are enabled on this dashboard.         |
| `teams.enabled`   | boolean | Customer intent: whether Microsoft Teams subscriptions are enabled on this dashboard. |
| `gchat.enabled`   | boolean | Customer intent: whether Google Chat subscriptions are enabled on this dashboard.     |

This endpoint returns saved toggle state only. For the **effective** public availability (plan + toggle), see `subscriptions` on `GET /dashboard/status`.

***

## Error responses
| Status | When                                                                 |
| ------ | -------------------------------------------------------------------- |
| `404`  | Dashboard not found or does not belong to the caller's organization. |
