Pular para o conteúdo principal
POST
/
v1
/
public
/
agents
/
conversations
/
{conversation_id}
/
feedback
Submit feedback for the conversation
curl --request POST \
  --url https://api.quintus.tec.br/v1/public/agents/conversations/{conversation_id}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "score": 5,
  "comment": "<string>",
  "metadata": {}
}
'
{
  "id": "<string>",
  "score": 123,
  "submitted_at": "2023-11-07T05:31:56Z",
  "comment": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://quintus.tec.br/docs/llms.txt

Use this file to discover all available pages before exploring further.

Autorizações

Authorization
string
header
obrigatório

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

Parâmetros de caminho

conversation_id
string
obrigatório

Corpo

application/json
score
integer
obrigatório
Intervalo obrigatório: 0 <= x <= 10
comment
string | null
Maximum string length: 2000
metadata
Metadata · object

Integrator-defined fields stored alongside the feedback.

Resposta

Successful Response

id
string
obrigatório

Conversation identifier the feedback was submitted for.

score
integer
obrigatório
submitted_at
string<date-time>
obrigatório
comment
string | null