Feedback API – Version 2
Last modified: August 23, 2024
Introduction
The Mendix Feedback API allows you to retrieve, add, and manage feedback for your Mendix apps.
Authentication
Authentication for the Feedback API uses a personal access token (PAT).
Generating a PAT
For details on how to generate a PAT, see the Personal Access Tokens section in User Settings.
Select at least the following as App Insights scopes:
mx:feedback:read
– to performGET
operationsmx:feedback:write
– to perform all operations (GET
,POST
,PUT
, andDELETE
)
Store the generated value {GENERATED_PAT}
somewhere safe so you can use it to authorize your Mendix Feedback API calls.
Using the PAT
Each request must contain an Authorization
header with the value MxToken {GENERATED_PAT}
. Here is an example:
GET /feedback-api.mendix.com/v2/feedback-items HTTP/1.1
Authorization: MxToken 7LJE…vk
To authenticate calls when using the Open API specification below, click Authorize and use the value MxToken {GENERATED_PAT}
.