# Get review settings

**Publié le** : 2026-05-08
**Catégorie** : Forms & Reviews

## `GET /reviews/settings`

**Get review settings**

Returns the moderation settings (auto-approve threshold, notification preferences).

Required permissions: `reviews.settings`

### 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/reviews/settings \
  -H "Authorization: Bearer $API_TOKEN"
```

### Response Example

```json
{
  "data": {
    "autoApprove": false,
    "requireEmail": true,
    "notifyOnNew": true,
    "minRatingAutoApprove": null
  }
}
```

---