Feedback
This document provides api for feedback handling
Base path: /api2/fedback
Create Feedback
POST /
Description : Send app feedback
Curl Example
curl -X POST "https://api.trackongps.com/api2/feedback" \
-H "Cookie: JSESSIONID=session_id" \
-H "Content-Type: application/json" \
-d '{
"title": "Important Feedback",
"description": "This is a sample feedback message"
}'
Responses
201 Created - Example Response
{
"message": "Feedback Sent!",
}