# Change notification settings

> PUT /me/notification-settings

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

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

**curl**

```bash
curl https://api.mockflow.com/v1/me/notification-settings \
  -X PUT \
  -H "Authorization: Bearer $MOCKFLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "email": false
}'
```

**JavaScript**

```javascript
const response = await fetch("https://api.mockflow.com/v1/me/notification-settings", {
  method: "PUT",
  headers: {
    Authorization: `Bearer ${process.env.MOCKFLOW_API_KEY}`,
    "Content-Type": "application/json"
  },
  body: JSON.stringify({
  "email": false
})
});

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

**Python**

```python
import os, requests

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

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"
}
```

### 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).

### Body

- `email` (boolean)

### 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.
