Skip to main content

Submit user feedback

POST 

<your-unleash-url>/feedback

Allows users to submit feedback.

Request

Bodyrequired

provideFeedbackSchema

    categorystringrequired

    The category of the feedback.

    Example: UI/UX
    userTypestringnullable

    The type of user providing the feedback.

    Example: developer
    difficultyScorenumbernullable

    A score indicating the difficulty experienced by the user.

    Example: 5
    positivestringnullable

    This field is for users to mention what they liked.

    Example: Easy to navigate.
    areasForImprovementstringnullable

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

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
curl -L '<your-unleash-url>/feedback' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"category": "UI/UX",
"userType": "developer",
"difficultyScore": 5,
"positive": "Easy to navigate.",
"areasForImprovement": "Slow response time."
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Body required
{
  "category": "UI/UX",
  "userType": "developer",
  "difficultyScore": 5,
  "positive": "Easy to navigate.",
  "areasForImprovement": "Slow response time."
}
ResponseClear

Click the Send API Request button above and see the response here!