organizationSlugstring
The organization's slug. You can find a existing list of organizations you have access to using the `find_organizations()` tool.
regionUrlany
The region URL for the organization you're querying, if known. For Sentry's Cloud Service (sentry.io), this is typically the region-specific URL like 'https://us.sentry.io'. For self-hosted Sentry installations, this parameter is usually not needed and should be omitted. You can find the correct regionUrl from the organization details using the `find_organizations()` tool.
issueIdstring
The Issue ID. e.g. `PROJECT-1Z43`
issueUrlstring
The URL of the issue. e.g. https://my-organization.sentry.io/issues/PROJECT-1Z43
statusenum
The new status for the issue. Valid values are 'resolved', 'resolvedInNextRelease', 'unresolved', and 'ignored'.
assignedTostring
The assignee in format 'user:ID' or 'team:ID_OR_SLUG' where ID is numeric. Example: 'user:123456', 'team:789', or 'team:my-team-slug'. Use `execute_sentry_tool(name='whoami', arguments={})` to find your user ID.
ignoreModeenum
How ignored issues should behave. Use 'untilEscalating' to match the Sentry UI default, 'forever' for a permanent ignore, 'forDuration' with ignoreDurationMinutes, 'untilOccurrenceCount' with ignoreCount and optional ignoreWindowMinutes, or 'untilUserCount' with ignoreUserCount and optional ignoreUserWindowMinutes.
ignoreDurationMinutesinteger
How many minutes to ignore the issue when ignoreMode is 'forDuration'.
ignoreCountinteger
How many times the issue must occur before it stops being ignored when ignoreMode is 'untilOccurrenceCount'.
ignoreWindowMinutesinteger
Optional time window in minutes for ignoreCount. If omitted, Sentry counts all future occurrences.
ignoreUserCountinteger
How many users must be affected before the issue stops being ignored when ignoreMode is 'untilUserCount'.
ignoreUserWindowMinutesinteger
Optional time window in minutes for ignoreUserCount. If omitted, Sentry counts all future affected users.
reasonstring
Optional reason for taking this action. When provided, it will be posted as a comment on the issue's activity feed.