Submit customer feedback, feature requests, or bug reports.
Request Body
Type of feedback: feedback, bug, feature, question
The feedback message content
Email address for follow-up
ID of the user submitting feedback
Additional metadata (page URL, browser info, etc.)
Response
Whether the feedback was submitted
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"
}
}