Skip to main content
POST
/
v3
/
sessions
/
:id
/
feedback
Submit user feedback for a session
curl --request POST \
  --url https://api.verlon.ai/v3/sessions/:id/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "score": 3,
  "comment": "<string>",
  "tags": [
    "<string>"
  ],
  "endUserId": "<string>"
}
'
{
  "error": "<string>",
  "message": "<string>",
  "details": "<unknown>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.verlon.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Layer API key (prefixed sk-). Generated from the dashboard under Settings → API Keys, or via layer key create in the CLI.

Body

application/json
rating
enum<string>
required
Available options:
positive,
negative,
neutral
score
number
Required range: 1 <= x <= 5
comment
string
tags
string[]
endUserId
string

Response

Feedback saved.