Skip to main content
GET
/
feedback
/
{feedback_id}
Get Feedback By Id
curl --request GET \
  --url https://analyst.heyhumm.ai/feedback/{feedback_id} \
  --header 'Authorization: Bearer <token>'
{
  "key": "<string>",
  "feedback_type": "thumbs_up",
  "thread_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "langsmith_synced": true,
  "deleted": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "score": 123,
  "value": "<string>",
  "comment": "<string>",
  "langsmith_run_id": "<string>",
  "langsmith_trace_id": "<string>"
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

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

Path Parameters

feedback_id
string
required

Feedback ID

Query Parameters

organization_id
string
required

Response

Successful Response

Response model for feedback.

key
string
required

Feedback key/category (e.g., 'helpfulness', 'accuracy')

feedback_type
enum<string>
required

Type of feedback

Available options:
thumbs_up,
thumbs_down,
rating,
comment,
custom
thread_id
string<uuid>
required

Internal thread ID

organization_id
string<uuid>
required

Organization ID

user_id
string<uuid>
required

User who provided the feedback

id
string<uuid>
required
langsmith_synced
boolean
required
deleted
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
score
number | null

Numeric score (0-1 for thumbs, 1-5 for rating)

value
string | null

String value for the feedback

comment
string | null

Additional text comment

langsmith_run_id
string | null

LangSmith run ID

langsmith_trace_id
string | null

LangSmith trace ID