Skip to main content
GET
/
api
/
v2
/
feedback
/
feedback-types
/
List feedback types
curl --request GET \
  --url https://paradigm.lighton.ai/api/v2/feedback/feedback-types/ \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?page=4",
  "previous": "http://api.example.org/accounts/?page=2",
  "results": [
    {
      "id": 123,
      "name": "<string>",
      "value_type": "boolean",
      "value_range_start": 123,
      "value_range_end": 123,
      "unique_feedback": true
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

page
integer

A page number within the paginated result set.

unique_feedback
boolean
value_type
enum<string>
  • boolean - Boolean flag
  • float - Float range
  • comment - Free text comment
  • tag - String tag
Available options:
boolean,
comment,
float,
tag

Response

Successful response

count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?page=4"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?page=2"

I