Get all feedback events.
GET/api/admin/feedback
Get all feedback events.
Responses
- 200
feedbackListSchema
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
id numberrequired
The unique identifier of the feedback.
Example:
123
createdAt date-timerequired
The date and time when the feedback was provided.
Example:
2022-12-12T12:13:24.218Z
category stringrequired
The category of the feedback.
Example:
UI/UX
userType stringnullablerequired
The type of user providing the feedback.
Example:
developer
difficultyScore numbernullablerequired
A score indicating the difficulty experienced by the user.
Example:
5
positive stringnullablerequired
This field is for users to mention what they liked.
Example:
Easy to navigate.
areasForImprovement stringnullablerequired
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."
}
]
Loading...