Retrieve Feedback
Feedback
Retrieve Feedback
Retrieve a single feedback item by ID
GET
Retrieve Feedback
Overview
Returns a single feedback item by itsfbk_ ID. Use it to poll a report as it moves through its status lifecycle so you know your report was seen and acted on.
Reads are strictly org-scoped. A feedback ID that belongs to another organization returns 404 not_found, exactly like an ID that does not exist, so nothing leaks about other orgs’ reports.
Any valid API key may read; no special scope is required. Retrieving feedback does not consume metered usage.
Status lifecycle
Every report starts atopen and moves forward as the Signa team works it:
status | Meaning |
|---|---|
open | Submitted and awaiting triage. This is the value on creation. |
acknowledged | The team has seen the report and is investigating. |
resolved | The report is closed. resolution_note explains the outcome and resolved_at is stamped. A “won’t fix” is a resolved with an explanatory note (there is no separate status). |
status) to follow the transition.
Path Parameters
Feedback identifier (
fbk_...) returned when you submitted the report.Response
Same fields as a single feedback object.Code Examples
Errors
| Status | Type | Description |
|---|---|---|
| 400 | validation_error | Malformed feedback ID (not a prefixed ID at all) |
| 400 | id_type_mismatch | A well-formed ID of the wrong type (e.g. a tm_... where an fbk_... is expected) |
| 401 | unauthorized | Missing or invalid API key |
| 404 | not_found | Feedback does not exist or belongs to another organization |
Related Endpoints
- Submit Feedback, file a new report
- List Feedback, paginated list with type and status filters