# Notification settings

> GET /me/notification-settings

Source: https://mockflow.com/developers/reference/me/get-notification-settings

**GET** `https://api.mockflow.com/v1/me/notification-settings`  
Scopes: `user:read`

**curl**

```bash
curl https://api.mockflow.com/v1/me/notification-settings \
  -H "Authorization: Bearer $MOCKFLOW_API_KEY"
```

**JavaScript**

```javascript
const response = await fetch("https://api.mockflow.com/v1/me/notification-settings", {
  method: "GET",
  headers: {
    Authorization: `Bearer ${process.env.MOCKFLOW_API_KEY}`
  }
});

const data = await response.json();
```

**Python**

```python
import os, requests

response = requests.get(
    "https://api.mockflow.com/v1/me/notification-settings",
    headers={"Authorization": f"Bearer {os.environ['MOCKFLOW_API_KEY']}"},
)

response.raise_for_status()
data = response.json()
```

**200**

```json
{
  "email": false
}
```

**429**

```json
{
  "error": {
    "code": "rate_limited",
    "message": "Too many requests.",
    "docsUrl": "https://mockflow.com/developers/concepts/errors#rate_limited"
  },
  "requestId": "req_45d49816999bac40"
}
```

Whether the workspace receives notification emails.

### Authorization

- `Authorization` (string, required): `Bearer <key>`. The key needs `user:read` scope. Create and manage keys in the [developer console](/developers/console/); what each scope unlocks is on the [scopes page](/developers/concepts/scopes).

### Response

- `email` (boolean): Whether the workspace receives notification emails. One switch per workspace, as in the account page.

### Errors

- 429 `rate_limited`: Too many requests.
