Skip to Content

Feedback

The feedback endpoints mirror Submissions exactly, but operate on posts of type feedback — open-ended input that isn’t a bug report or feature request.

GET/v1/feedback

ParameterTypeDescription
statusstringFilter by status: open, planned, in_progress, or done.
limitintegerPage size. Defaults to 20.
offsetintegerNumber of items to skip. Defaults to 0.

GET/v1/feedback/:id

POST/v1/feedback

ParameterTypeDescription
titlerequiredstringShort summary.
emailrequiredstringEmail of the end user.
bodystringLonger description.
namestringDisplay name for the end user.
localestringLanguage for the notification emails this triggers (en, de, es, fr, it, ja, ru, zh). Defaults to en.

Creating feedback is metered against the same monthly submission quota and requires paid-plan write access Pro.

List feedback

curl "https://api.supdesk.app/v1/feedback?status=open&limit=10" \ -H "Authorization: Bearer sd_live_..."
{ "data": [ { "id": "8f7a...", "type": "feedback", "title": "Add dark mode support", "body": "Would love to see a dark theme option for the dashboard.", "status": "open", "created_at": "2026-07-01T09:12:00Z" } ], "pagination": { "limit": 10, "offset": 0, "has_more": false } }

Get a feedback item

curl "https://api.supdesk.app/v1/feedback/8f7a..." \ -H "Authorization: Bearer sd_live_..."
{ "data": { "id": "8f7a...", "type": "feedback", "title": "Add dark mode support", "body": "Would love to see a dark theme option for the dashboard.", "status": "open", "created_at": "2026-07-01T09:12:00Z" } }

Create feedback

curl -X POST https://api.supdesk.app/v1/feedback \ -H "Authorization: Bearer sd_live_..." \ -H "Content-Type: application/json" \ -d '{ "title": "Add dark mode support", "email": "jamie@example.com", "body": "Would love to see a dark theme option for the dashboard.", "name": "Jamie" }'
{ "data": { "id": "8f7a...", "type": "feedback", "title": "Add dark mode support", "body": "Would love to see a dark theme option for the dashboard.", "status": "open", "created_at": "2026-07-01T09:12:00Z" } }
Last updated on