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
| Parameter | Type | Description |
|---|---|---|
status | string | Filter by status: open, planned, in_progress, or done. |
limit | integer | Page size. Defaults to 20. |
offset | integer | Number of items to skip. Defaults to 0. |
GET/v1/feedback/:id
POST/v1/feedback
| Parameter | Type | Description |
|---|---|---|
titlerequired | string | Short summary. |
emailrequired | string | Email of the end user. |
body | string | Longer description. |
name | string | Display name for the end user. |
locale | string | Language 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