Submit user feedback
POST/feedback
Allows users to submit feedback.
Request
- application/json
Body
required
provideFeedbackSchema
The category of the feedback.
UI/UX
The type of user providing the feedback.
developer
A score indicating the difficulty experienced by the user.
5
This field is for users to mention what they liked.
Easy to navigate.
Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.
Slow response time.
Responses
- 200
feedbackSchema
- application/json
- Schema
- Example (from schema)
Schema
The unique identifier of the feedback.
123
The date and time when the feedback was provided.
2022-12-12T12:13:24.218Z
The category of the feedback.
UI/UX
The type of user providing the feedback.
developer
A score indicating the difficulty experienced by the user.
5
This field is for users to mention what they liked.
Easy to navigate.
Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.
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."
}