Skip to main content

Submit user feedback

POST <your-unleash-url>/feedback

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Allows users to submit feedback.

Request

Body

required

provideFeedbackSchema

  • category string required

    The category of the feedback.

  • userType string nullable

    The type of user providing the feedback.

  • difficultyScore number nullable

    A score indicating the difficulty experienced by the user.

  • positive string nullable

    This field is for users to mention what they liked.

  • areasForImprovement string nullable

    Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.

Responses

feedbackSchema

Schema
  • id number required

    The unique identifier of the feedback.

  • createdAt date-time required

    The date and time when the feedback was provided.

  • category string required

    The category of the feedback.

  • userType string nullable required

    The type of user providing the feedback.

  • difficultyScore number nullable required

    A score indicating the difficulty experienced by the user.

  • positive string nullable required

    This field is for users to mention what they liked.

  • areasForImprovement string nullable required

    Details aspects of the service or product that could benefit from enhancements or modifications. Aids in pinpointing areas needing attention for improvement.

Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API

Request

Base URL
<your-unleash-url>
Security Scheme
apiKey
Body required
{
"category": "UI/UX",
"userType": "developer",
"difficultyScore": 5,
"positive": "Easy to navigate.",
"areasForImprovement": "Slow response time."
}
curl / cURL
curl -L -X POST '<your-unleash-url>/feedback' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <API_KEY_VALUE>' \
--data-raw '{
"category": "UI/UX",
"userType": "developer",
"difficultyScore": 5,
"positive": "Easy to navigate.",
"areasForImprovement": "Slow response time."
}'