Update conversation feedback

All API requests should contain authorization headers.

Request

PATCH chat/conversations/{id}/feedback

Request body

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

Fields

FieldTypeComments

isPositive

boolean

Indicates the conversation feedback from the client

text

string

Additional text related to the customer's conversation satisfaction

Response

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

Data field has type of Conversation satisfaction object.

Last updated