# Copy review to another locale

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

## `POST /reviews/:id/copy-to-locale`

**Copy review to another locale**

Creates a translated copy of this review in the target locale.

Required permissions: `reviews.create`

### Parameters

| Name | In | Type | Required | Description |
| --- | --- | --- | --- | --- |
| `id` | path | string | Yes | Unique identifier |


### Request Body

Content-Type: `application/json`

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `targetLocale` | string | Yes | Required |


### Responses

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


### Examples

```bash
curl -X POST https://api.lynkow.com/v1/reviews/101/copy-to-locale \
  -H "Authorization: Bearer $API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"locale": "fr"}'
```

### Response Example

```json
{
  "data": {
    "id": 150,
    "title": "Excellent platform",
    "content": "Lynkow made managing our website content incredibly easy.",
    "rating": 5,
    "status": "approved",
    "authorName": "Marie Dupont",
    "locale": "fr",
    "createdAt": "2025-04-06T15:00:00.000Z",
    "updatedAt": "2025-04-06T15:00:00.000Z"
  }
}
```

---