GET
/
feedbacks
curl --request GET \
  --url https://api.operator.xyz/feedbacks \
  --header 'Authorization: Bearer <token>' \
  --header 'Operator-Version: <operator-version>'
{
  "data": [
    {
      "id": "<string>",
      "conversation_id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "rating": "<string>",
      "created_by_user_id": "<string>",
      "created_by_user_name": "<string>",
      "reasons": [
        "<string>"
      ],
      "comment": "<string>"
    }
  ],
  "cursor": "<string>",
  "reasons": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Operator-Version
string
required

The API version to use.

Example:

"2024-11-11"

Query Parameters

operator_id
string
required

The ID of the Operator that handled the conversations.

cursor
string

Cursor to paginate through the feedback.

created_at_gte
string

Filter feedback created after this date.

created_at_lt
string

Filter feedback created before this date.

Response

200 - application/json

List of conversation feedbacks.

The response is of type object.