# Update conversation feedback

{% hint style="warning" %}
All API requests should contain [authorization headers](https://developers.socialboards.com/docs/apis/tickets/authorization-headers).
{% endhint %}

**Request**

```
PATCH chat/conversations/{id}/feedback
```

**Request body**

```json
{
    "isPositive": true,
    "text": "Nice, thank you!"
}
```

**Fields**

| Field      | Type    | Comments                                                            |
| ---------- | ------- | ------------------------------------------------------------------- |
| isPositive | boolean | Indicates the conversation feedback from the client                 |
| text       | string  | Additional text related to the customer's conversation satisfaction |

**Response**

```json
{
    "data": {
        "isPositive": true,
        "text": "Nice, resolve my problem!"
    },
    "errorCode": -1,
    "errorText": null
}
```

`Data` field has type of [Conversation satisfaction](https://developers.socialboards.com/docs/apis/external-chat-api/reference/objects/conversation-feedback) object.
