Get all feedback events.
GET<your-unleash-url>/api/admin/feedback
Get all feedback events.
Responses
- 200
feedbackListSchema
- application/json
- Schema
- Example (auto)
Schema
- Array [
- ]
idnumberrequired
The unique identifier of the feedback.
Example:
123
createdAtdate-timerequired
The date and time when the feedback was provided.
Example:
2022-12-12T12:13:24.218Z
categorystringrequired
The category of the feedback.
Example:
UI/UX
userTypestringnullablerequired
The type of user providing the feedback.
Example:
developer
difficultyScorenumbernullablerequired
A score indicating the difficulty experienced by the user.
Example:
5
positivestringnullablerequired
This field is for users to mention what they liked.
Example:
Easy to navigate.
areasForImprovementstringnullablerequired
Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.
Example:
Slow response time.
[
{
"id": 123,
"createdAt": "2022-12-12T12:13:24.218Z",
"category": "UI/UX",
"userType": "developer",
"difficultyScore": 5,
"positive": "Easy to navigate.",
"areasForImprovement": "Slow response time."
}
]
Authorization: Authorization
name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L '<your-unleash-url>/api/admin/feedback' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>'
ResponseClear