Skip to main content

Submit user feedback

POST 

/feedback

Allows users to submit feedback.

Request

Body

required

provideFeedbackSchema

    category stringrequired

    The category of the feedback.

    Example: UI/UX
    userType stringnullable

    The type of user providing the feedback.

    Example: developer
    difficultyScore numbernullable

    A score indicating the difficulty experienced by the user.

    Example: 5
    positive stringnullable

    This field is for users to mention what they liked.

    Example: Easy to navigate.
    areasForImprovement stringnullable

    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.

Responses

feedbackSchema

Schema

    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.
Loading...