Sample Feedback Request
With your API key in hand, you're ready to start sending feedback and feature requests from your app. Below is a basic example of how to structure your API request:
This endpoint allows you to submit user feedback, including bug reports, feature requests, or general comments, for a specific mobile application.
The feedback message provided by the user.
This is user generated feedback.
Unique identifier of the application.
app456
Name of the application.
Auth App
The platform on which the feedback is being provided (e.g., iOS, Android).
iOS
The operating system version of the user's device.
14.4
The version of the application.
1.0.0
The locale of the user's device.
en-US
The environment in which the feedback is being provided (e.g., production, development).
production
Additional metadata associated with the feedback.
{"key1":"value1","key2":"value2"}
Type of feedback (e.g., bug, feature request, other).
bug
A list of tags associated with the feedback.
["tag1","tag2"]
POST /feedbacks HTTP/1.1
Host: api.mobilefeedback.app
x-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 356
{
"message": "This is user generated feedback.",
"appId": "app456",
"appName": "Auth App",
"platform": "iOS",
"osVersion": 14.4,
"appVersion": "1.0.0",
"locale": "en-US",
"environment": "production",
"metadata": {
"key1": "value1",
"key2": "value2"
},
"feedbackType": "bug",
"tags": [
"tag1",
"tag2"
],
"userDetails": {
"name": "Hamdi Ceylan",
"email": "[email protected]",
"userId": "user789"
}
}
{
"message": "Feedback created successfully"
}
Last updated