Skip to content
Get started

Feedback Records

List feedback records with filters
GET/v1/feedback-records
Create a new feedback record
POST/v1/feedback-records
Get a feedback record by ID
GET/v1/feedback-records/{id}
Delete a feedback record
DELETE/v1/feedback-records/{id}
Update a feedback record
PATCH/v1/feedback-records/{id}
Get similar feedback records
GET/v1/feedback-records/{id}/similar
ModelsExpand Collapse
FeedbackRecordData = object { id, collected_at, created_at, 18 more }
id: string

UUIDv7 primary key

formatuuid
collected_at: string

When the feedback was collected

formatdate-time
created_at: string

When this record was created

formatdate-time
field_id: string

Identifier for the question/field

field_type: "text" or "categorical" or "nps" or 6 more

Type of field

Accepts one of the following:
"text"
"categorical"
"nps"
"csat"
"ces"
"rating"
"number"
"boolean"
"date"
source_type: string

Type of feedback source

submission_id: string

Identifier for the logical submission this record belongs to (required).

tenant_id: string

Tenant/organization identifier. NULL bytes not allowed.

updated_at: string

When this record was last updated

formatdate-time
field_group_id: optional string

Stable identifier grouping related fields (for ranking, matrix, grid questions)

field_group_label: optional string

Human-readable question text for the group

field_label: optional string

The actual question text

language: optional string

ISO language code. NULL bytes not allowed.

metadata: optional map[unknown]

Additional context

source_id: optional string

Reference to survey/form/ticket ID

source_name: optional string

Human-readable name

user_identifier: optional string

User identifier

value_boolean: optional boolean

Boolean response

value_date: optional string

Date response

formatdate-time
value_number: optional number

Numeric response

formatdouble
value_text: optional string

Text response. NULL bytes not allowed.

Feedback RecordsSearch

Semantic search over feedback records
POST/v1/feedback-records/search/semantic