Skip to main content
POST
/
api
/
conversation
/
{id}
/
csat
POST /api/conversation/{id}/csat
curl --request POST \
  --url https://api.staging.tetherai.ca/api/conversation/{id}/csat \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "rating": 5,
  "feedback": "Great service!"
}
'
{}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json
rating
integer
required

CSAT rating (1-5 stars)

Required range: 1 <= x <= 5
Example:

5

feedback
string

Optional feedback text (max 2000 characters)

Maximum string length: 2000
Example:

"Great service!"

Response

Successful response

Generic response envelope. Endpoint-specific fields are intentionally open.