Skip to main content
POST
https://api.usegately.com
/
api
/
v1
/
feedback
curl -X POST "https://api.usegately.com/api/v1/feedback" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "feature",
    "message": "Would love to see dark mode support",
    "email": "[email protected]",
    "metadata": {
      "page": "/settings"
    }
  }'
{
  "success": true,
  "feedback": {
    "id": "fb_123",
    "type": "feature",
    "message": "Would love to see dark mode support",
    "email": "[email protected]",
    "status": "new",
    "created_at": "2024-01-15T10:30:00Z"
  }
}
Submit customer feedback, feature requests, or bug reports.

Request Body

type
string
required
Type of feedback: feedback, bug, feature, question
message
string
required
The feedback message content
email
string
Email address for follow-up
user_id
string
ID of the user submitting feedback
metadata
object
Additional metadata (page URL, browser info, etc.)

Response

success
boolean
Whether the feedback was submitted
feedback
object
The created feedback object
curl -X POST "https://api.usegately.com/api/v1/feedback" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "feature",
    "message": "Would love to see dark mode support",
    "email": "[email protected]",
    "metadata": {
      "page": "/settings"
    }
  }'
{
  "success": true,
  "feedback": {
    "id": "fb_123",
    "type": "feature",
    "message": "Would love to see dark mode support",
    "email": "[email protected]",
    "status": "new",
    "created_at": "2024-01-15T10:30:00Z"
  }
}