# Update notification settings

**Publié le** : 2026-05-08
**Catégorie** : Settings & Config

## `PUT /settings/notifications`

**Update notification settings**

Enables or disables email notifications per event type.

Required permissions: `notifications.settings.update`

### Responses

| Status | Description |
| --- | --- |
| `200` | Successful response |
| `401` | Unauthorized — invalid or missing API token |
| `403` | Forbidden — insufficient permissions |
| `422` | Validation error |


### Response Example

```json
{
  "data": {
    "formSubmission": true,
    "newReview": true,
    "reviewApproved": true,
    "contentPublished": false,
    "recipientEmails": [
      "admin@example.com"
    ]
  }
}
```

---