# Get notification settings

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

## `GET /settings/notifications`

**Get notification settings**

Returns email notification preferences for each event type.

Required permissions: `notifications.settings.view`

### Responses

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


### Examples

```bash
curl https://api.lynkow.com/v1/settings/notifications \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

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

---