| name | sentry-cli-feedback | |||||
|---|---|---|---|---|---|---|
| version | 0.39.0-dev.0 | |||||
| description | Search and inspect User Feedback | |||||
| requires |
|
Search and inspect User Feedback
List and search User Feedback
Flags:
--status <value> - Mailbox: unresolved, resolved, spam, or all - (default: "unresolved")-n, --limit <value> - Number of feedback items (1-1000) - (default: "25")-q, --query <value> - Search query (Sentry issue search syntax)-t, --period <value> - Time range: "7d", "2026-06-01..2026-07-01", ">=2026-06-01" - (default: "14d")-f, --fresh - Bypass cache, re-detect projects, and fetch fresh data-c, --cursor <value> - Navigate pages: "next", "prev", "first" (or raw cursor string)
JSON Fields (use --json --fields to select specific fields):
| Field | Type | Description |
|---|---|---|
id |
string | Numeric issue ID |
shortId |
string | Human-readable short ID (e.g. PROJ-ABC) |
title |
string | Issue title |
culprit |
string | null | Culprit string |
count |
string | Total event count |
userCount |
number | Number of affected users |
firstSeen |
string | null | First occurrence (ISO 8601) |
lastSeen |
string | null | Most recent occurrence (ISO 8601) |
level |
string | Severity level |
status |
string | Issue status |
permalink |
string | URL to the issue in Sentry |
project |
object | Project info |
metadata |
object | Feedback metadata |
assignedTo |
object | null | Assigned user or team |
priority |
string | Triage priority |
platform |
string | Platform |
substatus |
string | null | Issue substatus |
isUnhandled |
boolean | Whether the issue is unhandled |
seerFixabilityScore |
number | null | Seer AI fixability score (0-1) |
issueCategory |
string | Issue category discriminator |
issueType |
string | Issue type discriminator |
hasSeen |
boolean | Whether the feedback has been read |
latestEventHasAttachments |
boolean | Whether the latest event has attachments |
Examples:
# Auto-detect the organization from the current project
sentry feedback list
# List Feedback for one project
sentry feedback list my-org/frontend
# List Feedback across every project in an organization
sentry feedback list my-org/
# Search for a project across accessible organizations
sentry feedback list frontend
sentry feedback list my-org/frontend --status resolved
sentry feedback list my-org/frontend --status spam
sentry feedback list my-org/frontend --status all --period 90d
sentry feedback list my-org/frontend --query "message:*checkout*"View a User Feedback item
Flags:
-w, --web - Open in browser-f, --fresh - Bypass cache, re-detect projects, and fetch fresh data
JSON Fields (use --json --fields to select specific fields):
| Field | Type | Description |
|---|---|---|
id |
string | Numeric issue ID |
shortId |
string | Human-readable short ID (e.g. PROJ-ABC) |
title |
string | Issue title |
culprit |
string | null | Culprit string |
count |
string | Total event count |
userCount |
number | Number of affected users |
firstSeen |
string | null | First occurrence (ISO 8601) |
lastSeen |
string | null | Most recent occurrence (ISO 8601) |
level |
string | Severity level |
status |
string | Issue status |
permalink |
string | URL to the issue in Sentry |
project |
object | Project info |
metadata |
object | Feedback metadata |
assignedTo |
object | null | Assigned user or team |
priority |
string | Triage priority |
platform |
string | Platform |
substatus |
string | null | Issue substatus |
isUnhandled |
boolean | Whether the issue is unhandled |
seerFixabilityScore |
number | null | Seer AI fixability score (0-1) |
issueCategory |
string | Issue category discriminator |
issueType |
string | Issue type discriminator |
hasSeen |
boolean | Whether the feedback has been read |
latestEventHasAttachments |
boolean | Whether the latest event has attachments |
org |
string | null | Organization slug |
event |
unknown | null | Latest feedback event |
replayIds |
array | Related Session Replay IDs |
attachments |
array | Attachments on the latest feedback event |
Examples:
# Most recent unresolved Feedback, with detected or explicit organization
sentry feedback view @latest
sentry feedback view my-org/@latest
# Short ID or numeric ID
sentry feedback view FRONTEND-2SDJ
sentry feedback view 5146636313
# Explicit organization
sentry feedback view my-org/FRONTEND-2SDJ
# `view` is the default command; `show` is an alias
sentry feedback my-org/FRONTEND-2SDJ
sentry feedback show my-org/FRONTEND-2SDJ
# Open the Feedback item in Sentry
sentry feedback view my-org/FRONTEND-2SDJ --webAll commands also support --json, --fields, --help, --log-level, and --verbose flags.