Submit user feedback
POST /feedback
Allows users to submit feedback.
Request
- application/json
Body
required
provideFeedbackSchema
- category string requiredThe category of the feedback. 
- userType string nullableThe type of user providing the feedback. 
- difficultyScore number nullableA score indicating the difficulty experienced by the user. 
- positive string nullableThis field is for users to mention what they liked. 
- areasForImprovement string nullableDetails aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement. 
- 200
feedbackSchema
- application/json
- Schema
- Example (from schema)
Schema
- id number requiredThe unique identifier of the feedback. 
- createdAt date-time requiredThe date and time when the feedback was provided. 
- category string requiredThe category of the feedback. 
- userType string nullable requiredThe type of user providing the feedback. 
- difficultyScore number nullable requiredA score indicating the difficulty experienced by the user. 
- positive string nullable requiredThis field is for users to mention what they liked. 
- areasForImprovement string nullable requiredDetails aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement. 
{
  "id": 123,
  "createdAt": "2022-12-12T12:13:24.218Z",
  "category": "UI/UX",
  "userType": "developer",
  "difficultyScore": 5,
  "positive": "Easy to navigate.",
  "areasForImprovement": "Slow response time."
}