List issues for a project
This endpoint is deprecated. Use List issues for an organization instead, which supports additional filtering and sorting options.
event:read
Path parameters
The ID or slug of the organization.
The ID or slug of the project.
Query parameters
A Sentry structured search query. Defaults to
is:unresolved if not provided. Pass an empty string (query=) to return all issues regardless of status.The time period for inline stats. One of
24h, 14d, or "" to disable. Defaults to 24h.Set to
1 to also search by short ID (e.g. PUMP-STATION-1).Pagination cursor from the
Link response header.Example request
List issues for an organization
event:read
Path parameters
The ID or slug of the organization.
Query parameters
A Sentry structured search query. Defaults to
is:unresolved. Examples:is:unresolved— unresolved issuesis:resolved— resolved issuesassigned:me— issues assigned to youlevel:error— error-level issuesissue.category:feedback— user feedback items
Filter by project ID. Can be repeated for multiple projects.
Filter by environment name.
Time period for inline stats. One of
24h or 14d.Number of results per page. Maximum is 100. Defaults to 25.
Pagination cursor from the
Link response header.Example request
Example response
Response fields
The unique ID of the issue.
A human-readable issue identifier (e.g.
PUMP-STATION-1).The issue title, derived from the exception or log message.
The code path or function where the error occurred.
The current status. One of
unresolved, resolved, ignored, or reprocessing.The severity level. One of
fatal, error, warning, info, or debug.The total number of events in this issue.
The number of unique users affected.
ISO 8601 timestamp of when the issue was first seen.
ISO 8601 timestamp of when the issue was most recently seen.
The user or team the issue is assigned to, or
null if unassigned.Retrieve an issue
event:read
Path parameters
The ID or slug of the organization.
The ID of the issue.
Example request
Update an issue
event:write
Path parameters
The ID or slug of the organization.
The ID of the issue to update.
Request body
The new status. One of
resolved, resolvedInNextRelease, unresolved, or ignored.The actor ID or username of the user or team to assign the issue to. Use the format
team:slug to assign to a team.Whether the current user bookmarks the issue.
Whether the current user subscribes to workflow notifications for the issue.
Whether to make the issue publicly viewable.
Marks the issue as seen or unseen for the current user.
Example request
Bulk update issues
id query parameters to specify which issues to update. Omit id to update all issues matching the optional status filter.
Required scope: event:write
Query parameters
The ID of an issue to update. Repeat this parameter for each issue:
?id=1&id=2&id=3.Restrict the bulk operation to issues with this status. One of
resolved, unresolved, ignored, or reprocessing.Example request
Delete an issue
event:admin
Example request
202 Accepted.