v7

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

Update Unleash feedback

Updates the feedback with the provided ID. Only provided fields are updated. Fields left out are left untouched. Must be called with a token with an identifiable user (either from being sent from the UI or from using a PAT).

put/api/admin/feedback/{id}

Path parameters

idstring required

Request body

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

Example request

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

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"
}