v7

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-013764062.2 MB
Admin UI

Send Unleash feedback

Sends feedback gathered from the Unleash UI to the Unleash server. Must be called with a token with an identifiable user (either from being sent from the UI or from using a PAT).

post/api/admin/feedback

Request body

neverShowboolean

true if the user has asked never to see this feedback questionnaire again. Defaults to false.

feedbackIdstring required

The name of the feedback session

Example request

{
  "feedbackId": "pnps"
}

Response

feedbackResponseSchema

userIdinteger

The ID of the user that gave the feedback.

neverShowboolean

true if the user has asked never to see this feedback questionnaire again.

givenstring date-time nullable

When this feedback was given

feedbackIdstring

The name of the feedback session

Example response

{
  "userId": 2,
  "given": "2023-07-06T08:29:21.282Z",
  "feedbackId": "pnps"
}