Skip to main content

Send Unleash feedback

POST 

<your-unleash-url>/api/admin/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).

Request

Bodyrequired

feedbackCreateSchema

    neverShowboolean

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

    Example: false
    feedbackIdstringrequired

    The name of the feedback session

    Example: pnps

Responses

feedbackResponseSchema

Schema
    userIdinteger

    The ID of the user that gave the feedback.

    Example: 2
    neverShowboolean

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

    Example: false
    givendate-timenullable

    When this feedback was given

    Example: 2023-07-06T08:29:21.282Z
    feedbackIdstring

    The name of the feedback session

    Example: pnps

Authorization: Authorization

name: Authorizationtype: apiKeyin: headerdescription: API key needed to access this API
curl -L '<your-unleash-url>/api/admin/feedback' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: <Authorization>' \
-d '{
"neverShow": false,
"feedbackId": "pnps"
}'
Request Collapse all
Base URL
<your-unleash-url>
Auth
Body required
{
  "neverShow": false,
  "feedbackId": "pnps"
}
ResponseClear

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