Skip to content

POST User Feedback Reports Upload

The upload endpoint allows clients to upload user feedback reports in JSON format.

{
        "report": "reportUUID", (required)
        "time": "2018-02-05T13:46:50.793+08", (required)
        "anonymous": false, (true/false boolean type)
        "appInfo": {
                "application": "ClientFeedbackUpload0ae95adbc1e544388b46ab752688b86f", (required)
                "appVersion": "< Version No. > version"
        },
        "deviceInfo": {
                "platform": "<Platform Name>platform",
                "platformVersion": "<Platform Version No.>platversion",
                "deviceModel": "<Device Model>Model",
                "deviceID ": "<Device ID>Device" (required)
        },
        "feedback": [{
                "context": "feedback context",
                "score": 10,
                "comment": "comments go here..."
        }]
}

HTTP Method: POST

URL: https://<mobile services host>/mobileservices/application/{applicationId}/clientfeedback/v1/runtime/clientfeedback/application/{applicationId}

Parameter Type Description Parameter Type
applicationId Required ID of the current application. This must match the application ID that was used to configure the user feedback chart upload for your app. string

Response Status and Error Codes

Code Description
201 The upload was successful.
400 The upload failed due to an incorrect payload.
default Unexpected error.

Last update: August 31, 2023