# Import reviews from CSV

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

## `POST /reviews/import`

**Import reviews from CSV**

Imports reviews from a CSV file. Expected columns: rating, title,
content, authorName, status.

Required permissions: `reviews.import`

### Responses

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


> **Notes:** - Maximum 1000 rows per import.
> 
> - Invalid rows are skipped with error details in the response.

### Examples

```bash
curl -X POST https://api.lynkow.com/v1/reviews/import \
  -H "Authorization: Bearer $API_TOKEN" \
  -F "file=@reviews.csv"
```

### Response Example

```json
{
  "imported": 42,
  "errors": []
}
```

---