Skip to main content
POST
/
v3
/
inbox
/
threads
/
{id}
/
ai-draft
/
feedback
Submit feedback on a generated AI draft
curl --request POST \
  --url https://api.reply.io/v3/inbox/threads/{id}/ai-draft/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "vote": "like",
  "dislikeReasons": [
    "<string>"
  ],
  "comment": "<string>"
}
'
{
  "title": "Unauthorized",
  "status": 401,
  "detail": "Authentication credentials are missing or invalid."
}

Documentation Index

Fetch the complete documentation index at: https://docs.reply.io/llms.txt

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

Authorizations

Authorization
string
header
required

Authenticate every request with a Bearer token. Pass your Reply API key in the Authorization header:

Authorization: Bearer <your-api-key>

Get your API key from the Reply dashboard: Settings → API Key.

Path Parameters

id
integer
required

Thread id

Required range: x >= 1

Body

application/json
vote
enum<string>
required
Available options:
like,
dislike
dislikeReasons
string[]

Categorized reasons when vote is dislike. The exact enum is still being finalized — coming soon.

comment
string

Freeform comment from the user

Response

Feedback recorded