Update an Issue
Update an individual issue's attributes. Only the attributes submitted are modified.
Path Parameters
organization_id_or_slug(string)REQUIREDThe ID or slug of the organization the resource belongs to.
issue_id(integer)REQUIREDThe ID of the issue you'd like to query.
Body Parameters
inbox(boolean)REQUIREDIf true, marks the issue as reviewed by the requestor.
status(string)REQUIREDLimit mutations to only issues with the given status.
resolvedunresolvedignoredresolvedInNextReleasemuted
statusDetailsREQUIREDAdditional details about the resolution. Status detail updates that include release data are only allowed for issues within a single project.
substatus(string)REQUIREDThe new substatus of the issue.
archived_until_escalatingarchived_until_condition_metarchived_foreverescalatingongoingregressednew
hasSeen(boolean)REQUIREDIf true, marks the issue as seen by the requestor.
isBookmarked(boolean)REQUIREDIf true, bookmarks the issue for the requestor.
isPublic(boolean)REQUIREDIf true, publishes the issue.
isSubscribed(boolean)REQUIREDIf true, subscribes the requestor to the issue.
merge(boolean)REQUIREDIf true, merges the issues together.
discard(boolean)REQUIREDIf true, discards the issues instead of updating them.
assignedTo(string)REQUIREDThe user or team that should be assigned to the issues. Values take the form of
<user_id>,user:<user_id>,<username>,<user_primary_email>, orteam:<team_id>.priority(string)REQUIREDThe priority that should be set for the issues
lowmediumhigh
Scopes
<auth_token> requires one of the following scopes:event:adminevent:write
curl https://sentry.io/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/ \ -H 'Authorization: Bearer <auth_token>' \ -X PUT \ -H 'Content-Type: application/json' \ -d '{}'
Copied.