Sentry
sentryIntegrate Sentry to manage your error tracking and monitoring.
Acciones disponibles (176)
Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.
Access project informationSENTRY_ACCESS_PROJECT_INFORMATIONAcciónRetrieves detailed information for a sentry project, given its existing organization and project id or slug.
SENTRY_ACCESS_PROJECT_INFORMATIONAcciónRetrieves detailed information for a sentry project, given its existing organization and project id or slug.
Parámetros de entrada
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioDictionary with project details, including ID, name, slug, platform, creation date, and other settings.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add organization member via emailSENTRY_ADD_ORGANIZATION_MEMBER_VIA_EMAILAcciónInvites a new member (or re-invites an existing non-accepted member) to a sentry organization via email, allowing specification of organization and team roles.
SENTRY_ADD_ORGANIZATION_MEMBER_VIA_EMAILAcciónInvites a new member (or re-invites an existing non-accepted member) to a sentry organization via email, allowing specification of organization and team roles.
Parámetros de entrada
emailstringObligatorioemailThe email address of the user to invite or add to the organization.
orgRolestringenumPrimary organization-level role. `billing`: Manages payment/compliance. `member`: Views events/data. `manager`: Manages teams, projects, membership. `owner`: Unrestricted access. `admin`: Edits global integrations, manages projects/teams. Note: The `admin` role may have plan-specific restrictions; consider `manager` or `teamRoles`.
billingmembermanagerowneradminreinvitebooleanIf `True`, resends an invitation to a user previously invited but who has not yet accepted.
teamRolesobject[]List of team-specific role assignments. Common roles: `contributor` (views/acts on issues, may add members per org settings) and `admin` (full team/project management).
sendInvitebooleanIf `True`, an invitation email is sent to the user. Set to `False` to add the member without an email notification.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the member will be added.
Parámetros de salida
dataobjectObligatorioA dictionary containing details of the organization member who was added or invited, such as their ID, email, role, and status.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add or remove user email by idSENTRY_ADD_REMOVE_USER_EMAIL_BY_IDAcciónAdds or removes a secondary email for an existing sentry user, determined by whether the email already exists for that user.
SENTRY_ADD_REMOVE_USER_EMAIL_BY_IDAcciónAdds or removes a secondary email for an existing sentry user, determined by whether the email already exists for that user.
Parámetros de entrada
emailstringObligatorioemailThe email address to be added to or removed from the user's Sentry account. Ensure this is a valid email format.
user_idstringObligatorioThe unique identifier of the Sentry user (e.g., numeric ID or 'self') for whom the email address is being managed.
Parámetros de salida
dataobjectObligatorioA dictionary containing Sentry's response. This typically reflects the updated state of the user's email addresses or the status of the operation. For instance, it might contain a list of all current emails for the user (possibly nested under a key like 'emails') or details of the specific email that was managed.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add team member in organizationSENTRY_ADD_TEAM_MEMBER_IN_ORGANIZATIONAcciónAdds an existing member of an organization to one of its teams; the member must already belong to the organization, and the team must also belong to that organization.
SENTRY_ADD_TEAM_MEMBER_IN_ORGANIZATIONAcciónAdds an existing member of an organization to one of its teams; the member must already belong to the organization, and the team must also belong to that organization.
Parámetros de entrada
member_idstringObligatorioID of the existing organization member to be added to the team.
team_id_or_slugstringObligatorioThe ID or slug of the team to which the member will be added. Slugs are typically lowercase and use hyphens.
organization_id_or_slugstringObligatorioThe ID or slug of the organization. Slugs are typically lowercase and use hyphens.
Parámetros de salida
dataobjectObligatorioContains data on the operation's outcome, which varies if the member was newly added, an access request was generated, or the member was already on the team.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add team to projectSENTRY_ADD_TEAM_TO_PROJECTAcciónGrants a sentry team access to a sentry project within the specified sentry organization.
SENTRY_ADD_TEAM_TO_PROJECTAcciónGrants a sentry team access to a sentry project within the specified sentry organization.
Parámetros de entrada
team_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry team that will be granted access to the project.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry project. Access will be granted to this project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization. This organization contains both the project and the team.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the Sentry project, reflecting the addition of the team.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create dashboard with widgetsSENTRY_CREATE_DASHBOARD_WITH_WIDGETSAcciónCreates a sentry dashboard with widgets for an organization; `organization id or slug` and specified `project` ids must be valid, and `start`/`end` datetimes (if absolute range) must form a logical iso 8601 range.
SENTRY_CREATE_DASHBOARD_WITH_WIDGETSAcciónCreates a sentry dashboard with widgets for an organization; `organization id or slug` and specified `project` ids must be valid, and `start`/`end` datetimes (if absolute range) must form a logical iso 8601 range.
Parámetros de entrada
idstringOptional client-specified unique dashboard identifier; Sentry generates one if omitted.
endstringdate-timeAbsolute end datetime (ISO 8601) for time range; 'start' must also be set for custom absolute range.
utcbooleanIf true, time range is UTC; otherwise, defaults to user's local time or organization settings.
startstringdate-timeAbsolute start datetime (ISO 8601) for time range; 'end' must also be set for custom absolute range.
titlestringObligatorioTitle for the new dashboard.
periodstringDefault relative time range (e.g., '24h', '7d', 'auto'); 'auto' is often 14 days. Overridden if 'start' and 'end' are provided.
filtersobjectAdditional key-value filters (Sentry search syntax for keys) for the dashboard.
widgetsobject[]List of widget configurations defining appearance, data queries, and layout.
projectsinteger[]Project IDs to scope dashboard data; if empty/null, may apply to all accessible projects based on org settings.
environmentstring[]Environment names (e.g., 'production') to filter data; if empty/null, all environments included.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization where the dashboard will be created.
Parámetros de salida
dataobjectObligatorioRepresentation of the created dashboard, including its ID, title, widget configurations, and properties.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create external user for organizationSENTRY_CREATE_EXTERNAL_USER_FOR_ORGANIZATIONAcciónLinks a sentry user to an external identity provider's user within a sentry organization; the sentry user must be an organization member, an active integration for the provider must be configured, and `external id` is typically required for the external user.
SENTRY_CREATE_EXTERNAL_USER_FOR_ORGANIZATIONAcciónLinks a sentry user to an external identity provider's user within a sentry organization; the sentry user must be an organization member, an active integration for the provider must be configured, and `external id` is typically required for the external user.
Parámetros de entrada
idintegerObligatorioThe unique numeric identifier for the external actor linkage being created. Its specific use may depend on the integration or Sentry's internal handling.
user_idintegerObligatorioThe numeric ID of the Sentry user to be linked with the external identity.
providerstringObligatorioenumThe external identity provider. Allowed values: `github`, `github_enterprise`, `slack`, `gitlab`, `msteams`, `custom_scm`.
githubgithub_enterpriseslackgitlabmsteamscustom_scmexternal_idstringThe user's unique identifier on the external provider's platform (e.g., GitHub user ID, Slack member ID). This ID is specific to the selected `provider`.
external_namestringObligatorioThe display name of the user as known on the external provider's platform (e.g., GitHub username, Slack display name).
integration_idintegerObligatorioThe numeric ID of the Sentry integration that corresponds to the specified provider and is configured for the organization.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization where the external user linkage will be created.
Parámetros de salida
dataobjectObligatorioA dictionary containing the representation of the created external user linkage. The structure may include details such as the Sentry user ID, external user ID, provider, and integration ID.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create organization alert ruleSENTRY_CREATE_ORGANIZATION_ALERT_RULEAcciónCreates a sentry metric alert rule for an organization, mandating a 'critical' trigger, typically for a single project, where actions may require sentry integrations.
SENTRY_CREATE_ORGANIZATION_ALERT_RULEAcciónCreates a sentry metric alert rule for an organization, mandating a 'critical' trigger, typically for a single project, where actions may require sentry integrations.
Parámetros de entrada
namestringObligatorioThe name for the alert rule. Maximum length of 256 characters.
ownerstringThe ID of the Sentry team or user that owns this alert rule. Can be a numeric ID or a string in the format 'team:<team_id>' or 'user:<user_id>'.
querystringObligatorioAn event search query to filter events for the alert. For example, to include only transactions with status code 400, use `http.status_code:400`. Use an empty string for no filter.
datasetstringThe Sentry dataset this query will execute on. Valid values include `events`, `transactions`, `metrics`, `sessions`, and `generic-metrics`. Defaults to `events` if not specified. Refer to Sentry's [Metric Alert Rule Types] documentation for valid configurations.
projectsstring[]ObligatorioA list of project slugs to filter by. For metric alerts, this list is typically limited to containing a single project slug.
triggersarrayObligatorioList of trigger configurations. Each trigger must specify `label` ('critical' or 'warning'; 'critical' is mandatory), `alertThreshold` (numeric value to trigger), and `actions`. Each action specifies `type` (e.g., 'email', 'slack'), `targetType` (e.g., 'specific', 'user'), `targetIdentifier` (ID/name, format varies by type e.g., email string, PagerDuty integer). Optional action fields include `inputChannelId` (Slack-specific), `integrationId` (usually required, except for 'email'/'sentry_app'), `sentryAppId` (if action `type` is 'sentry_app'), and `priority` (e.g., PagerDuty 'critical', Opsgenie 'P1').
aggregatestringObligatorioThe aggregate function used in this alert rule. Valid functions include `count`, `count_unique`, `percentage`, `avg`, `apdex`, `failure_rate`, `p50`, `p75`, `p95`, `p99`, `p100`, and `percentile`. Refer to Sentry's [Metric Alert Rule Types] documentation for valid configurations based on dataset and query type.
queryTypeintegerThe type of query. If no value is provided, `queryType` defaults based on the specified `dataset`. Supported values: `0` (Error events: event.type:error), `1` (Transaction events: event.type:transaction), `2` (None: for datasets like metrics that don't use this). See Sentry's [Metric Alert Rule Types] for valid configurations.
eventTypesstring[]A list of event types this alert will relate to. Valid values are `default` (for events captured via Capture Message), `error`, and `transaction`.
timeWindowintegerObligatorioThe time period in minutes to aggregate over. Supported values: `1` (1 minute), `5` (5 minutes), `10` (10 minutes), `15` (15 minutes), `30` (30 minutes), `60` (1 hour), `120` (2 hours), `240` (4 hours), `1440` (24 hours).
environmentstringThe name of the environment to filter by. If None or omitted, the alert rule applies to all environments.
monitorTypeintegerInteger representing the monitor type. This determines if the alert rule is actively monitored or monitored based on a specific activation condition. Consult Sentry documentation for specific values and their meanings.
thresholdTypeintegerObligatorioThe comparison operator for the critical and warning thresholds. `0` for 'Above' and `1` for 'Below'. The resolved threshold uses the opposite operator. For percentage change thresholds, `0` means 'Higher than' and `1` means 'Lower than'.
comparisonDeltaintegerOptional. The time delta in minutes for the comparison period. Required when using a percentage change threshold (e.g., 'X% higher/lower compared to `comparisonDelta` minutes ago'). Cannot be used for Crash Free Session Rate or Crash Free User Rate alerts.
resolveThresholdintegerOptional. The numeric value the metric must reach to resolve an active alert. If not provided, it's automatically set based on the lowest severity trigger's `alertThreshold` and `thresholdType`. For example, if an alert triggers 'Above' 50, it might resolve 'Below' 50. If `thresholdType` is `0` (Above), `resolveThreshold` must typically be less than or equal to the critical threshold; if `thresholdType` is `1` (Below), it must be greater than or equal.
activationConditionintegerOptional integer. Represents a trigger condition for when to start monitoring the alert rule, typically used when `monitorType` indicates conditional monitoring. Consult Sentry documentation for specific values.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which this alert rule belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the newly created organization alert rule.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create organization monitorSENTRY_CREATE_ORGANIZATION_MONITORAcciónCreates a new monitor (type 'cron job') within a sentry organization to track scheduled tasks, allowing configuration of its name, slug (which must be unique if provided), status, owner, and muting preferences for incidents.
SENTRY_CREATE_ORGANIZATION_MONITORAcciónCreates a new monitor (type 'cron job') within a sentry organization to track scheduled tasks, allowing configuration of its name, slug (which must be unique if provided), status, owner, and muting preferences for incidents.
Parámetros de entrada
namestringObligatorioThe human-readable name for the monitor. This name is used in notifications and the Sentry UI.
slugstringA unique identifier for the monitor within the organization. If not provided, Sentry will generate one. It must match the pattern `^[a-z][a-z0-9_\-]*$`. Changing this slug after creation requires updating any instrumented check-in calls.
typestringObligatorioenumThe type of the monitor. Must be 'cron_job', indicating a monitor for a scheduled task or cron job.
cron_jobownerstringThe Sentry actor ID (team or user) to be designated as the owner of this monitor. Format: 'user:{user_id}' or 'team:{team_id}'. If not provided, the monitor will be unassigned.
statusstringenumThe initial status of the monitor. 'active' monitors accept check-ins and contribute to quotas, while 'disabled' monitors do not. Allowed values: 'active', 'disabled'.
activedisabledis_mutedbooleanA boolean flag to control incident creation for this monitor. If true, monitor incidents (alerts) will be suppressed. Defaults to false if not provided.
organization_id_or_slugstringObligatorioThe identifier (ID or slug) of the Sentry organization to which this monitor will belong.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create organization teamSENTRY_CREATE_ORGANIZATION_TEAMAcciónCreates a new team in a sentry organization, requiring either a 'slug' (preferred, as 'name' is deprecated) or 'name' to define the team.
SENTRY_CREATE_ORGANIZATION_TEAMAcciónCreates a new team in a sentry organization, requiring either a 'slug' (preferred, as 'name' is deprecated) or 'name' to define the team.
Parámetros de entrada
namestringOptional. **`[DEPRECATED]`** The display name for the new team. If not supplied, it's auto-generated from the `slug` (if `slug` is provided). At least one of `name` or `slug` is required to create a team.
slugstringOptional. A unique, URL-friendly identifier for the new team. If not supplied, it's auto-generated from the `name` (if `name` is provided). Must adhere to the pattern: `^[a-z][a-z0-9_\-]*$`.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization where the new team will be created. This organization must already exist.
Parámetros de salida
dataobjectObligatorioA dictionary containing the attributes and details of the newly created Sentry team.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create project key with optional rate limitingSENTRY_CREATE_PROJECT_KEY_WITH_OPTIONAL_RATE_LIMITINGAcciónCreates a new client key (dsn) for an existing sentry project, with optional custom rate limit configuration.
SENTRY_CREATE_PROJECT_KEY_WITH_OPTIONAL_RATE_LIMITINGAcciónCreates a new client key (dsn) for an existing sentry project, with optional custom rate limit configuration.
Parámetros de entrada
namestringAn optional descriptive name for the client key. If not provided, Sentry will generate a default name.
rateLimit__countintegerThe maximum number of events that can be accepted for this key within the specified `rateLimit_window`. If omitted, Sentry's default rate limits will apply.
rateLimit__windowintegerThe time window in seconds for the `rateLimit_count`. For example, if `rateLimit_count` is 1000 and `rateLimit_window` is 3600, the key will accept up to 1000 events per hour. If omitted, Sentry's default rate limits will apply.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry project for which the client key will be created.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the newly created project key, typically including its DSN, public key, secret key, name, and rate limit configuration if specified.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create project rule for alertsSENTRY_CREATE_PROJECT_RULE_FOR_ALERTSAcciónCreates a sentry project alert rule by defining conditions, actions, and optional filters using specific json structures (detailed in parameter descriptions) to automate responses to event patterns for an existing organization and project.
SENTRY_CREATE_PROJECT_RULE_FOR_ALERTSAcciónCreates a sentry project alert rule by defining conditions, actions, and optional filters using specific json structures (detailed in parameter descriptions) to automate responses to event patterns for an existing organization and project.
Parámetros de entrada
namestringObligatorioDescriptive name for the alert rule.
ownerstringOwner ID (e.g., 'team:ID', 'user:ID').
actionsobject[]ObligatorioList of action objects executed when conditions (and filters) are met. Each object must specify an ID (action type) and parameters. See examples for required JSON structures: **Send a notification to Suggested Assignees** - `fallthroughType` - Who the notification should be sent to if there are no suggested assignees. Valid values are `ActiveMembers`, `AllMembers`, and `NoOne`. json { "id": "sentry.mail.actions.NotifyEmailAction", "targetType": "IssueOwners", "fallthroughType": "ActiveMembers" } **Send a notification to a Member or a Team** - `targetType` - One of `Member` or `Team`. - `fallthroughType` - Who the notification should be sent to if it cannot be sent to the original target. Valid values are `ActiveMembers`, `AllMembers`, and `NoOne`. - `targetIdentifier` - The ID of the Member or Team the notification should be sent to. json { "id": "sentry.mail.actions.NotifyEmailAction", "targetType": "Team", "fallthroughType": "AllMembers", "targetIdentifier": 4524986223 } **Send a Slack notification** - `workspace` - The integration ID associated with the Slack workspace. - `channel` - The name of the channel to send the notification to (e.g., #critical, Jane Schmidt). - `channel_id` (optional) - The ID of the channel to send the notification to. - `tags` (optional) - A string of tags to show in the notification, separated by commas (e.g., "environment, user, my_tag"). - `notes` (optional) - Text to show alongside the notification. To @ a user, include their user id like `@<USER_ID>`. To include a clickable link, format the link and title like `<http://example.com|Click Here>`. json { "id": "sentry.integrations.slack.notify_action.SlackNotifyServiceAction", "workspace": 293854098, "channel": "#warning", "tags": "environment,level", "notes": "Please <http://example.com|click here> for triage information" } **Send a Microsoft Teams notification** - `team` - The integration ID associated with the Microsoft Teams team. - `channel` - The name of the channel to send the notification to. json { "id": "sentry.integrations.msteams.notify_action.MsTeamsNotifyServiceAction", "team": 23465424, "channel": "General" } **Send a Discord notification** - `server` - The integration ID associated with the Discord server. - `channel_id` - The ID of the channel to send the notification to. - `tags` (optional) - A string of tags to show in the notification, separated by commas (e.g., "environment, user, my_tag"). json { "id": "sentry.integrations.discord.notify_action.DiscordNotifyServiceAction", "server": 63408298, "channel_id": 94732897, "tags": "browser,user" } **Create a Jira Ticket** - `integration` - The integration ID associated with Jira. - `project` - The ID of the Jira project. - `issuetype` - The ID of the type of issue that the ticket should be created as. - `dynamic_form_fields` (optional) - A list of any custom fields you want to include in the ticket as objects. json { "id": "sentry.integrations.jira.notify_action.JiraCreateTicketAction", "integration": 321424, "project": "349719", "issueType": "1" } **Create a Jira Server Ticket** - `integration` - The integration ID associated with Jira Server. - `project` - The ID of the Jira Server project. - `issuetype` - The ID of the type of issue that the ticket should be created as. - `dynamic_form_fields` (optional) - A list of any custom fields you want to include in the ticket as objects. json { "id": "sentry.integrations.jira_server.notify_action.JiraServerCreateTicketAction", "integration": 321424, "project": "349719", "issueType": "1" } **Create a GitHub Issue** - `integration` - The integration ID associated with GitHub. - `repo` - The name of the repository to create the issue in. - `title` - The title of the issue. - `body` (optional) - The contents of the issue. - `assignee` (optional) - The GitHub user to assign the issue to. - `labels` (optional) - A list of labels to assign to the issue. json { "id": "sentry.integrations.github.notify_action.GitHubCreateTicketAction", "integration": 93749, "repo": "default", "title": "My Test Issue", "assignee": "Baxter the Hacker", "labels": ["bug", "p1"] } **Create a GitHub Enterprise Issue** - `integration` - The integration ID associated with GitHub Enterprise. - `repo` - The name of the repository to create the issue in. - `title` - The title of the issue. - `body` (optional) - The contents of the issue. - `assignee` (optional) - The GitHub user to assign the issue to. - `labels` (optional) - A list of labels to assign to the issue. json { "id": "sentry.integrations.github_enterprise.notify_action.GitHubEnterpriseCreateTicketAction", "integration": 93749, "repo": "default", "title": "My Test Issue", "assignee": "Baxter the Hacker", "labels": ["bug", "p1"] } } **Create an Azure DevOps work item** - `integration` - The integration ID. - `project` - The ID of the Azure DevOps project. - `work_item_type` - The type of work item to create. - `dynamic_form_fields` (optional) - A list of any custom fields you want to include in the work item as objects. json { "id": "sentry.integrations.vsts.notify_action.AzureDevopsCreateTicketAction", "integration": 294838, "project": "0389485", "work_item_type": "Microsoft.VSTS.WorkItemTypes.Task" } **Send a PagerDuty notification** - `account` - The integration ID associated with the PagerDuty account. - `service` - The ID of the service to send the notification to. - `severity` - The severity of the Pagerduty alert. This is optional, the default is `critical` for fatal issues, `error` for error issues, `warning` for warning issues, and `info` for info and debug issues. json { "id": "sentry.integrations.pagerduty.notify_action.PagerDutyNotifyServiceAction", "account": 92385907, "service": 9823924, "severity": "critical" } **Send an Opsgenie notification** - `account` - The integration ID associated with the Opsgenie account. - `team` - The ID of the Opsgenie team to send the notification to. - `priority` - The priority of the Opsgenie alert. This is optional, the default is `P3`. json { "id": "sentry.integrations.opsgenie.notify_action.OpsgenieNotifyTeamAction", "account": 8723897589, "team": "9438930258-fairy", "priority": "P1" } **Send a notification to a service** - `service` - The plugin slug. json { "id": "sentry.rules.actions.notify_event_service.NotifyEventServiceAction", "service": "mail" } **Send a notification to a Sentry app with a custom webhook payload** - `settings` - A list of objects denoting the settings each action will be created with. All required fields must be included. - `sentryAppInstallationUuid` - The ID for the Sentry app json { "id": "sentry.rules.actions.notify_event_sentry_app.NotifyEventSentryAppAction", "settings": [ {"name": "title", "value": "Team Rocket"}, {"name": "summary", "value": "We're blasting off again."} ], "sentryAppInstallationUuid": "643522", "hasSchemaFormConfig": true } **Send a notification (for all legacy integrations)** json { "id": "sentry.rules.actions.notify_event.NotifyEventAction" }
filtersobject[]Optional list of filter objects for additional criteria after conditions are met. Each object must specify an ID (filter type) and parameters. See examples for required JSON structures: **The issue is `comparison_type` than `value` `time`** - `comparison_type` - One of `older` or `newer` - `value` - An integer - `time` - The unit of time. Valid values are `minute`, `hour`, `day`, and `week`. json { "id": "sentry.rules.filters.age_comparison.AgeComparisonFilter", "comparison_type": "older", "value": 3, "time": "week" } **The issue has happened at least `value` times** - `value` - An integer json { "id": "sentry.rules.filters.issue_occurrences.IssueOccurrencesFilter", "value": 120 } **The issue is assigned to No One** json { "id": "sentry.rules.filters.assigned_to.AssignedToFilter", "targetType": "Unassigned" } **The issue is assigned to `targetType`** - `targetType` - One of `Team` or `Member` - `targetIdentifier` - The target"s ID json { "id": "sentry.rules.filters.assigned_to.AssignedToFilter", "targetType": "Member", "targetIdentifier": 895329789 } **The event is from the latest release** json { "id": "sentry.rules.filters.latest_release.LatestReleaseFilter" } **The issue"s category is equal to `value`** - `value` - An integer correlated with a category. Valid values are `1` (Error), `2` (Performance), `3` (Profile), `4` (Cron), and `5` (Replay). json { "id": "sentry.rules.filters.issue_category.IssueCategoryFilter", "value": 2 } **The event"s `attribute` value `match` `value`** - `attribute` - Valid values are `message`, `platform`, `environment`, `type`, `error.handled`, `error.unhandled`, `error.main_thread`, `exception.type`, `exception.value`, `user.id`, `user.email`, `user.username`, `user.ip_address`, `http.method`, `http.url`, `http.status_code`, `sdk.name`, `stacktrace.code`, `stacktrace.module`, `stacktrace.filename`, `stacktrace.abs_path`, `stacktrace.package`, `unreal.crashtype`, and `app.in_foreground`. - `match` - The comparison operator. Valid values are `eq` (equals), `ne` (does not equal), `sw` (starts with), `ew` (ends with), `co` (contains), `nc` (does not contain), `is` (is set), and `ns` (is not set). - `value` - A string. Not required when `match` is `is` or `ns`. json { "id": "sentry.rules.conditions.event_attribute.EventAttributeCondition", "attribute": "http.url", "match": "nc", "value": "localhost" } **The event"s tags match `key` `match` `value`** - `key` - The tag - `match` - The comparison operator. Valid values are `eq` (equals), `ne` (does not equal), `sw` (starts with), `ew` (ends with), `co` (contains), `nc` (does not contain), `is` (is set), and `ns` (is not set). - `value` - A string. Not required when `match` is `is` or `ns`. json { "id": "sentry.rules.filters.tagged_event.TaggedEventFilter", "key": "level", "match": "eq", "value": "error" } **The event"s level is `match` `level`** - `match` - Valid values are `eq`, `gte`, and `lte`. - `level` - Valid values are `50` (fatal), `40` (error), `30` (warning), `20` (info), `10` (debug), `0` (sample). json { "id": "sentry.rules.filters.level.LevelFilter", "match": "gte", "level": "50" }
frequencyintegerObligatorioAction performance interval in minutes (5-43200) once conditions are met.
conditionsobject[]ObligatorioList of condition objects defining rule triggers. Each object must specify an ID (condition type) and parameters. See examples for required JSON structures: **A new issue is created** json { "id": "sentry.rules.conditions.first_seen_event.FirstSeenEventCondition" } **The issue changes state from resolved to unresolved** json { "id": "sentry.rules.conditions.regression_event.RegressionEventCondition" } **The issue is seen more than `value` times in `interval`** - `value` - An integer - `interval` - Valid values are `1m`, `5m`, `15m`, `1h`, `1d`, `1w` and `30d` (`m` for minutes, `h` for hours, `d` for days, and `w` for weeks). json { "id": "sentry.rules.conditions.event_frequency.EventFrequencyCondition", "value": 500, "interval": "1h" } **The issue is seen by more than `value` users in `interval`** - `value` - An integer - `interval` - Valid values are `1m`, `5m`, `15m`, `1h`, `1d`, `1w` and `30d` (`m` for minutes, `h` for hours, `d` for days, and `w` for weeks). json { "id": "sentry.rules.conditions.event_frequency.EventUniqueUserFrequencyCondition", "value": 1000, "interval": "15m" } **The issue affects more than `value` percent of sessions in `interval`** - `value` - A float - `interval` - Valid values are `5m`, `10m`, `30m`, and `1h` (`m` for minutes, `h` for hours). json { "id": "sentry.rules.conditions.event_frequency.EventFrequencyPercentCondition", "value": 50.0, "interval": "10m" }
actionMatchstringObligatorioenumLogic for condition evaluation ('all', 'any', 'none') before proceeding to filters.
allanynoneenvironmentstringSentry environment name for event filtering (e.g., 'production'). If omitted, applies to all environments.
filterMatchstringenumLogic for filter evaluation ('all', 'any', 'none') for action execution. Required if 'filters' are specified.
allanynoneproject_id_or_slugstringObligatorioUnique identifier (ID or slug) of the Sentry project for the rule.
organization_id_or_slugstringObligatorioUnique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioFull details of the successfully created alert rule.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create project webhook subscriptionSENTRY_CREATE_PROJECT_WEBHOOK_SUBSCRIPTIONAcciónRegisters a new webhook subscription for a sentry project to send http post notifications to a specified url for given events, provided the project has the 'servicehooks' feature enabled.
SENTRY_CREATE_PROJECT_WEBHOOK_SUBSCRIPTIONAcciónRegisters a new webhook subscription for a sentry project to send http post notifications to a specified url for given events, provided the project has the 'servicehooks' feature enabled.
Parámetros de entrada
urlstringObligatorioThe fully qualified URL to which Sentry will send webhook POST requests for the subscribed events.
eventsstring[]ObligatorioA list of event types to subscribe to for this webhook. When any of these events occur in the project, Sentry will send a notification to the specified URL.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project for which to create the webhook.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the newly created webhook subscription.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create release deploy for orgSENTRY_CREATE_RELEASE_DEPLOY_FOR_ORGAcciónCreates a new deploy record in sentry to track the introduction of a release version into a specific environment.
SENTRY_CREATE_RELEASE_DEPLOY_FOR_ORGAcciónCreates a new deploy record in sentry to track the introduction of a release version into a specific environment.
Parámetros de entrada
urlstringAn optional URL that provides a link to the deployment, such as a commit or a CI build page.
namestringAn optional human-readable name for the deploy.
versionstringObligatorioThe version identifier of the release to be deployed. This version must already exist in Sentry.
projectsstring[]An optional list of project slugs to associate this deploy with. If not provided, the deploy applies to all projects associated with the release.
dateStartedstringdate-timeAn optional ISO 8601 formatted date-time string (UTC is recommended) indicating when the deployment process started.
environmentstringObligatorioThe name of the environment to which this release is being deployed (e.g., 'production', 'staging'). This environment must be known to Sentry.
dateFinishedstringdate-timeAn optional ISO 8601 formatted date-time string (UTC is recommended) indicating when the deployment process finished. If not provided, Sentry uses the time the deploy API call is received.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary representing the newly created deploy object. This includes details such as the deploy ID, environment, version, associated projects, start and finish dates, and any other relevant attributes recorded by Sentry.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create release for organizationSENTRY_CREATE_RELEASE_FOR_ORGANIZATIONAcciónCreates a new sentry release for an existing organization, associating it with specified projects that must belong to that organization.
SENTRY_CREATE_RELEASE_FOR_ORGANIZATIONAcciónCreates a new sentry release for an existing organization, associating it with specified projects that must belong to that organization.
Parámetros de entrada
refstringAn optional commit reference, such as a branch name or a tag. This is useful if a tagged version has been provided (e.g., `version` is 'v1.0.0' and `ref` is 'refs/tags/v1.0.0').
urlstringAn optional URL that points to the release. This can be a link to a GitHub release, a CI build page, or an internal changelog.
refsobject[]An optional way to indicate the start and end commits for each repository included in a release. Head commits must include `repository` and `commit` (the HEAD SHA). They can optionally include `previousCommit` (the SHA of the HEAD of the previous release), which should be specified if this is the first time you've sent commit data. `commit` may also contain a range in the form of `previousCommit..commit`.
commitsobject[]An optional list of commit data to be associated with the release. Commits must include the `id` parameter (the SHA of the commit). Optionally, include `repository`, `message`, `patch_set`, `author_name`, `author_email`, and `timestamp` for richer integration and better suspect commit tracking.
versionstringObligatorioA unique identifier for this release. Can be a semantic version number, a commit hash, or any other string that uniquely identifies this release.
projectsstring[]ObligatorioA list of project slugs that are part of this release. These projects must belong to the specified organization.
dateReleasedstringdate-timeAn optional ISO 8601 timestamp indicating when the release went live. If not provided, the current time is assumed by Sentry.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the newly created Sentry release.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create scim group for organizationSENTRY_CREATE_SCIM_GROUP_FOR_ORGANIZATIONAcciónCreates a new sentry team (scim group) within an organization where scim is enabled; a url-friendly slug is auto-generated from the `displayname` (e.g., 'my team' becomes 'my-team' by lowercasing and replacing spaces with dashes), and the team starts with no members.
SENTRY_CREATE_SCIM_GROUP_FOR_ORGANIZATIONAcciónCreates a new sentry team (scim group) within an organization where scim is enabled; a url-friendly slug is auto-generated from the `displayname` (e.g., 'my team' becomes 'my-team' by lowercasing and replacing spaces with dashes), and the team starts with no members.
Parámetros de entrada
displayNamestringObligatorioHuman-readable name for the new team.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or slug of the Sentry organization where the new team will be created.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create sentry external issue linkSENTRY_CREATE_SENTRY_EXTERNAL_ISSUE_LINKAcciónLinks an existing sentry issue to an issue in an external service, or updates an existing link, requiring a configured sentry app installation `uuid`.
SENTRY_CREATE_SENTRY_EXTERNAL_ISSUE_LINKAcciónLinks an existing sentry issue to an issue in an external service, or updates an existing link, requiring a configured sentry app installation `uuid`.
Parámetros de entrada
uuidstringObligatorioUUID of the Sentry App installation, used to associate the external issue with the correct Sentry instance.
webUrlstringObligatorioURL of the external issue in the third-party service; should be a direct link.
issueIdintegerObligatorioID of the Sentry issue to link to the external issue.
projectstringObligatorioIdentifier for the project in the external service (not the Sentry project ID), e.g., JIRA project key, GitHub repository name.
identifierstringObligatorioUnique identifier for the external issue within the third-party service (e.g., JIRA issue key, GitHub issue number).
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create team project for organizationSENTRY_CREATE_TEAM_PROJECT_FOR_ORGANIZATIONAcciónCreates a new sentry project for an existing organization and team, allowing configuration of its name, slug, platform, and default alert rules.
SENTRY_CREATE_TEAM_PROJECT_FOR_ORGANIZATIONAcciónCreates a new sentry project for an existing organization and team, allowing configuration of its name, slug, platform, and default alert rules.
Parámetros de entrada
namestringObligatorioDisplay name for the new Sentry project.
slugstringOptional unique identifier for the project (e.g., for URLs), auto-generated from the name if omitted. Pattern: `^[a-z][a-z0-9_\-]*$`.
platformstringPrimary platform or language (e.g., python, javascript, java) for SDK setup instructions and issue processing.
default_rulesbooleanSpecifies whether to create default alert rules. If true (API default when parameter is omitted), an alert is triggered for every new issue. If false, no default alerts are created.
team_id_or_slugstringObligatorioID or slug of the Sentry team to associate with the project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization where the project will be created.
Parámetros de salida
dataobjectObligatorioFull details of the newly created Sentry project.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create user for SAML integrationSENTRY_CREATE_USER_FOR_SAML_INTEGRATIONAcciónCreates a new sentry organization member via a scim request for saml integration; this action does not support setting secondary emails.
SENTRY_CREATE_USER_FOR_SAML_INTEGRATIONAcciónCreates a new sentry organization member via a scim request for saml integration; this action does not support setting secondary emails.
Parámetros de entrada
userNamestringObligatorioemailUser's email address, used as the SAML identifier for the new member.
sentryOrgRolestringenumOrganization role for the new member; defaults to the organization's default role. The `admin` role cannot be assigned in Business/Enterprise plans; use `TeamRoles` instead.
billingmembermanageradminorganization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete dsyms for projectSENTRY_DELETE_DSYMS_FOR_PROJECTAcciónPermanently removes a specific debug information file (dif), used for symbolicating crash reports, from the specified sentry project and organization.
SENTRY_DELETE_DSYMS_FOR_PROJECTAcciónPermanently removes a specific debug information file (dif), used for symbolicating crash reports, from the specified sentry project and organization.
Parámetros de entrada
idstringObligatorioThe unique identifier of the Debug Information File (DIF) to be deleted. This ID is assigned by Sentry when the file is uploaded.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project from which the Debug Information File (DIF) will be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the project belongs. Slugs are short, URL-friendly names.
Parámetros de salida
dataobjectObligatorioA dictionary containing the API response. If the deletion is successful, this dictionary might be empty or contain a success message. In case of an error, it will typically include details about the error.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete external issue by uuidSENTRY_DELETE_EXTERNAL_ISSUE_BY_UUIDAcciónUnlinks an external issue (e.g., from jira/github), identified by `external issue id`, from the sentry app installation specified by `uuid`.
SENTRY_DELETE_EXTERNAL_ISSUE_BY_UUIDAcciónUnlinks an external issue (e.g., from jira/github), identified by `external issue id`, from the sentry app installation specified by `uuid`.
Parámetros de entrada
uuidstringObligatorioUnique identifier (UUID) of the Sentry app installation.
external_issue_idstringObligatorioPlatform-specific identifier of the external issue to be unlinked.
Parámetros de salida
dataobjectObligatorioResponse data from the delete operation. Typically an empty dictionary for successful deletions that return a 204 No Content status.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete an external team by idSENTRY_DELETE_EXTERNAL_TEAM_BY_IDAcciónUnlinks a previously established external team from a sentry team; this action does not delete either the sentry team or the external team.
SENTRY_DELETE_EXTERNAL_TEAM_BY_IDAcciónUnlinks a previously established external team from a sentry team; this action does not delete either the sentry team or the external team.
Parámetros de entrada
team_id_or_slugstringObligatorioUnique identifier (ID or slug) of the Sentry team.
external_team_idintegerObligatorioNumeric ID of the external team integration, typically obtained when the link was established.
organization_id_or_slugstringObligatorioUnique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete external user from organizationSENTRY_DELETE_EXTERNAL_USER_FROM_ORGANIZATIONAcciónDeletes the link between an external user (e.g., from an sso provider) and a sentry user within the specified sentry organization.
SENTRY_DELETE_EXTERNAL_USER_FROM_ORGANIZATIONAcciónDeletes the link between an external user (e.g., from an sso provider) and a sentry user within the specified sentry organization.
Parámetros de entrada
external_user_idintegerObligatorioUnique numerical identifier of the external user, typically obtained when the association was initially established with Sentry.
organization_id_or_slugstringObligatorioID or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDeletion operation result; may be an empty object or minimal API confirmation for success.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete member from teamSENTRY_DELETE_MEMBER_FROM_TEAMAcciónRemoves an organization member from a sentry team, revoking their team-specific permissions, provided the member is currently part of that team.
SENTRY_DELETE_MEMBER_FROM_TEAMAcciónRemoves an organization member from a sentry team, revoking their team-specific permissions, provided the member is currently part of that team.
Parámetros de entrada
member_idstringObligatorioIdentifier (ID) of the organization member to remove from the team (e.g., '234567'). Typically a numerical ID.
team_id_or_slugstringObligatorioIdentifier (ID) or slug of the Sentry team from which the member will be removed (e.g., 'frontend-developers', '98765'). Team slugs are typically lowercase and hyphenated.
organization_id_or_slugstringObligatorioIdentifier (ID) or slug of the Sentry organization (e.g., 'our-company', '123456'). Slugs are typically lowercase and hyphenated.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization alert ruleSENTRY_DELETE_ORGANIZATION_ALERT_RULEAcciónDeletes a specific metric alert rule within a sentry organization.
SENTRY_DELETE_ORGANIZATION_ALERT_RULEAcciónDeletes a specific metric alert rule within a sentry organization.
Parámetros de entrada
alert_rule_idintegerObligatorioThe unique numerical identifier (ID) of the metric alert rule to be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the alert rule belongs. This specifies the scope of the deletion operation.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization dashboardSENTRY_DELETE_ORGANIZATION_DASHBOARDAcciónDeletes a custom dashboard or tombstones (marks as deleted) a pre-built dashboard within a sentry organization.
SENTRY_DELETE_ORGANIZATION_DASHBOARDAcciónDeletes a custom dashboard or tombstones (marks as deleted) a pre-built dashboard within a sentry organization.
Parámetros de entrada
dashboard_idintegerObligatorioNumerical ID of the dashboard to delete.
organization_id_or_slugstringObligatorioIdentifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioAPI response data; typically empty for a successful deletion (HTTP 204 No Content).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization discover querySENTRY_DELETE_ORGANIZATION_DISCOVER_QUERYAcciónPermanently removes a specific saved discover query (a configuration for exploring event data) from a sentry organization.
SENTRY_DELETE_ORGANIZATION_DISCOVER_QUERYAcciónPermanently removes a specific saved discover query (a configuration for exploring event data) from a sentry organization.
Parámetros de entrada
query_idintegerObligatorioThe unique integer identifier of the saved Discover query that you intend to delete.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the Discover query belongs.
Parámetros de salida
dataobjectAn empty dictionary is usually returned on successful deletion. May contain error details if the operation fails.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization integrationSENTRY_DELETE_ORGANIZATION_INTEGRATIONAcciónPermanently deletes a specific integration previously installed for the sentry organization.
SENTRY_DELETE_ORGANIZATION_INTEGRATIONAcciónPermanently deletes a specific integration previously installed for the sentry organization.
Parámetros de entrada
integration_idstringObligatorioThe unique identifier (ID) of the integration that is installed on the organization and is to be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization from which the integration will be deleted.
Parámetros de salida
dataobjectObligatorioData concerning the deletion's outcome; typically empty for successful operations (which often return HTTP 204 No Content).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization issueSENTRY_DELETE_ORGANIZATION_ISSUEAcciónPermanently deletes a specific sentry issue, identified by its id, from an organization; this operation is irreversible and idempotent.
SENTRY_DELETE_ORGANIZATION_ISSUEAcciónPermanently deletes a specific sentry issue, identified by its id, from an organization; this operation is irreversible and idempotent.
Parámetros de entrada
issue_idstringObligatorioThe unique identifier (ID) of the Sentry issue to be permanently deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the issue belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the response from the Sentry API. Upon successful deletion, this is typically an empty object or contains minimal confirmation data, as the HTTP status code indicates success (e.g., 202 Accepted or 204 No Content).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization memberSENTRY_DELETE_ORGANIZATION_MEMBERAcciónPermanently removes a member from a sentry organization, revoking their access to that organization and all its associated projects.
SENTRY_DELETE_ORGANIZATION_MEMBERAcciónPermanently removes a member from a sentry organization, revoking their access to that organization and all its associated projects.
Parámetros de entrada
member_idstringObligatorioThe unique identifier (ID) of the member to be removed from the organization.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or the human-readable slug of the Sentry organization from which the member will be removed.
Parámetros de salida
dataobjectObligatorioTypically empty upon successful deletion (204 No Content); may contain data in non-standard responses or with additional API wrapper context.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization monitorSENTRY_DELETE_ORGANIZATION_MONITORAcciónDeletes a sentry cron monitor or, if `environment` is specified, only specific environments within that monitor.
SENTRY_DELETE_ORGANIZATION_MONITORAcciónDeletes a sentry cron monitor or, if `environment` is specified, only specific environments within that monitor.
Parámetros de entrada
environmentstring[]Optional list of environment names to delete; if omitted, the entire monitor (including all its environments) is deleted.
monitor_id_or_slugstringObligatorioThe ID or slug of the Sentry cron monitor to be deleted.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization to which the monitor belongs.
Parámetros de salida
dataobjectObligatorioA dictionary that is typically empty on a successful synchronous deletion (e.g., HTTP 204 No Content). For asynchronous deletions (e.g., HTTP 202 Accepted), it might contain details about the deletion task.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete organization releaseSENTRY_DELETE_ORGANIZATION_RELEASEAcciónPermanently and irreversibly removes a sentry release, including all its associated files, identified by its version from the specified organization.
SENTRY_DELETE_ORGANIZATION_RELEASEAcciónPermanently and irreversibly removes a sentry release, including all its associated files, identified by its version from the specified organization.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release to be deleted. This could be a semantic version (e.g., '1.0.0', 'my-app@2.3.1') or a unique commit hash.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the release belongs.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete org notification actionSENTRY_DELETE_ORG_NOTIFICATION_ACTIONAcciónDeletes a specific spike protection notification action for a sentry organization, where `action id` must be a valid action associated with the `organization id or slug`.
SENTRY_DELETE_ORG_NOTIFICATION_ACTIONAcciónDeletes a specific spike protection notification action for a sentry organization, where `action id` must be a valid action associated with the `organization id or slug`.
Parámetros de entrada
action_idintegerObligatorioThe unique numerical identifier (ID) of the notification action to be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary that is typically empty upon successful deletion (HTTP 204 No Content). It may contain additional information in other response scenarios.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project by idSENTRY_DELETE_PROJECT_BY_IDAcciónSchedules a sentry project for asynchronous deletion within a specified organization, hiding it from most public views once the process begins.
SENTRY_DELETE_PROJECT_BY_IDAcciónSchedules a sentry project for asynchronous deletion within a specified organization, hiding it from most public views once the process begins.
Parámetros de entrada
project_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry project to be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioDictionary for operation details or error messages. For successful asynchronous 204 No Content deletions, this is typically empty as no body is returned.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project hookSENTRY_DELETE_PROJECT_HOOKAcciónDeletes a specific service hook from a sentry project using its organization, project, and hook identifiers.
SENTRY_DELETE_PROJECT_HOOKAcciónDeletes a specific service hook from a sentry project using its organization, project, and hook identifiers.
Parámetros de entrada
hook_idstringObligatorioThe unique identifier (GUID) of the service hook to be deleted from the specified project.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project from which the service hook will be removed.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the project and service hook belong.
Parámetros de salida
dataobjectObligatorioA dictionary that may contain additional information regarding the deletion. For successful deletions (e.g., HTTP 204 No Content), this is often an empty dictionary.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project issuesSENTRY_DELETE_PROJECT_ISSUESAcciónPermanently removes specified issues from a sentry project; if no issue ids are provided, it removes the oldest 1000 issues.
SENTRY_DELETE_PROJECT_ISSUESAcciónPermanently removes specified issues from a sentry project; if no issue ids are provided, it removes the oldest 1000 issues.
Parámetros de entrada
idinteger[]A list of specific issue IDs to be permanently removed. If not provided, the action removes the oldest 1000 issues in the project.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project from which issues will be removed.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the project and its issues belong.
Parámetros de salida
dataobjectObligatorioA dictionary containing the API response. This is typically empty (e.g., following an HTTP 204 No Content status) on successful removal, or may contain error details if the operation fails.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project keySENTRY_DELETE_PROJECT_KEYAcciónPermanently deletes a specific client key (dsn) for a project, preventing it from being used to send events to sentry.
SENTRY_DELETE_PROJECT_KEYAcciónPermanently deletes a specific client key (dsn) for a project, preventing it from being used to send events to sentry.
Parámetros de entrada
key_idstringObligatorioThe ID of the client key (public DSN key) to delete.
project_id_or_slugstringObligatorioThe ID or slug of the project to which the client key belongs.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the project belongs.
Parámetros de salida
dataobjectResponse data from Sentry. Typically an empty dictionary for successful deletion.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project monitorSENTRY_DELETE_PROJECT_MONITORAcciónDeletes a sentry monitor, or optionally only its specified environments, for a given project.
SENTRY_DELETE_PROJECT_MONITORAcciónDeletes a sentry monitor, or optionally only its specified environments, for a given project.
Parámetros de entrada
environmentstring[]Optional. A list of environment names. If provided, only the monitor configurations for these specific environments will be deleted. If this parameter is omitted or an empty list is passed, the entire monitor and all its environment configurations will be deleted.
monitor_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry monitor to be deleted.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project to which the monitor belongs.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the project and monitor belong.
Parámetros de salida
dataobjectA dictionary that may contain additional details about the deletion. Usually empty for successful monitor deletions.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project replaySENTRY_DELETE_PROJECT_REPLAYAcciónPermanently deletes a specific sentry session replay (a video-like reproduction of user interactions, including console logs and network activity) from the specified project and organization.
SENTRY_DELETE_PROJECT_REPLAYAcciónPermanently deletes a specific sentry session replay (a video-like reproduction of user interactions, including console logs and network activity) from the specified project and organization.
Parámetros de entrada
replay_idstringObligatorioThe unique identifier (ID) of the session replay to be deleted.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry project from which the replay will be deleted.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization to which the project and replay belong.
Parámetros de salida
dataobjectObligatorioUsually empty upon successful deletion; may contain confirmation details or error information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project ruleSENTRY_DELETE_PROJECT_RULEAcciónPermanently deletes a specific issue alert rule from an existing project within an existing sentry organization.
SENTRY_DELETE_PROJECT_RULEAcciónPermanently deletes a specific issue alert rule from an existing project within an existing sentry organization.
Parámetros de entrada
rule_idintegerObligatorioThe numerical ID of the specific issue alert rule that needs to be deleted from the project.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project from which the alert rule will be deleted. Slugs are typically lowercase and hyphenated (e.g., 'my-web-project').
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization that contains the project and the alert rule to be deleted. Slugs are typically lowercase and hyphenated (e.g., 'my-sentry-org').
Parámetros de salida
dataobjectObligatorioA dictionary that is typically empty upon successful deletion. It might contain additional details or a success confirmation in some cases.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete a project symbol sourceSENTRY_DELETE_PROJECT_SYMBOL_SOURCESAcciónDeletes a specific custom symbol source from a project.
SENTRY_DELETE_PROJECT_SYMBOL_SOURCESAcciónDeletes a specific custom symbol source from a project.
Parámetros de entrada
idstringObligatorioThe unique identifier of the symbol source to be deleted. This is usually a UUID. Example: 'a1b2c3d4-e5f6-7890-1234-567890abcdef'.
project_id_or_slugstringObligatorioThe ID or slug of the project from which the symbol source will be deleted. Examples: 'my-project', '67890'.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the project belongs. Examples: 'my-org', '12345'.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete project team associationSENTRY_DELETE_PROJECT_TEAM_ASSOCIATIONAcciónRevokes a team's access to a sentry project; this operation is idempotent.
SENTRY_DELETE_PROJECT_TEAM_ASSOCIATIONAcciónRevokes a team's access to a sentry project; this operation is idempotent.
Parámetros de entrada
team_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry team to be disassociated from the project.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioThe response payload. For a successful deletion, this is typically an empty dictionary. In case of an error, it may contain details about the failure.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete release fileSENTRY_DELETE_RELEASE_FILEAcciónPermanently deletes a specific file from an existing release, project, and organization; this action is idempotent.
SENTRY_DELETE_RELEASE_FILEAcciónPermanently deletes a specific file from an existing release, project, and organization; this action is idempotent.
Parámetros de entrada
file_idstringObligatorioIdentifier of the file to be deleted.
versionstringObligatorioVersion identifier of the release.
project_id_or_slugstringObligatorioIdentifier (ID or slug) of the release's project.
organization_id_or_slugstringObligatorioIdentifier (ID or slug) of the release's organization.
Parámetros de salida
dataobjectObligatorioAn empty dictionary is expected upon successful deletion of the release file, as the API typically returns a 204 No Content status.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete release file by idSENTRY_DELETE_RELEASE_FILE_BY_IDAcciónPermanently deletes a specific build artifact (e.g., source map, application bundle) associated with a release.
SENTRY_DELETE_RELEASE_FILE_BY_IDAcciónPermanently deletes a specific build artifact (e.g., source map, application bundle) associated with a release.
Parámetros de entrada
file_idstringObligatorioThe unique identifier of the specific file to be deleted from the release. This often corresponds to the file's name or path as Sentry knows it.
versionstringObligatorioThe version identifier of the release from which the file will be deleted. This can be a semantic version, a commit hash, or any unique string identifying the release.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the release belongs.
Parámetros de salida
dataobjectObligatorioA dictionary that may contain data related to the deletion operation. For a successful synchronous deletion (HTTP 204 No Content), this is usually an empty dictionary.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete team by organization and team slugSENTRY_DELETE_TEAM_BY_ORGANIZATION_OR_TEAM_SLUGAcciónSchedules a sentry team for asynchronous deletion, which releases the team's slug for reuse upon successful scheduling.
SENTRY_DELETE_TEAM_BY_ORGANIZATION_OR_TEAM_SLUGAcciónSchedules a sentry team for asynchronous deletion, which releases the team's slug for reuse upon successful scheduling.
Parámetros de entrada
team_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry team targeted for deletion. For example, 'frontend-devs' or '67890'.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization to which the team belongs. For example, 'acme-corp' or '12345'.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete a team from an organization (SCIM v2)SENTRY_DELETE_TEAM_FROM_ORG_SCIM_V2AcciónPermanently and irreversibly deletes a specific team from a sentry organization via a scim v2 request, provided scim integration is enabled for the organization.
SENTRY_DELETE_TEAM_FROM_ORG_SCIM_V2AcciónPermanently and irreversibly deletes a specific team from a sentry organization via a scim v2 request, provided scim integration is enabled for the organization.
Parámetros de entrada
team_idintegerObligatorioThe unique numerical ID of the team to be deleted.
organization_id_or_slugstringObligatorioThe ID or URL-friendly slug of the Sentry organization from which the team will be deleted.
Parámetros de salida
dataobjectObligatorioA dictionary containing data from the SCIM API response. For successful deletion, this may be empty or contain a minimal confirmation.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete user emails by idSENTRY_DELETE_USER_EMAILS_BY_IDAcciónPermanently removes a sentry user's email address; if multiple emails exist, sentry's api logic (e.g., primary or previously marked) determines which is deleted.
SENTRY_DELETE_USER_EMAILS_BY_IDAcciónPermanently removes a sentry user's email address; if multiple emails exist, sentry's api logic (e.g., primary or previously marked) determines which is deleted.
Parámetros de entrada
user_idstringObligatorioUnique identifier of the Sentry user.
Parámetros de salida
dataobjectObligatorioAPI response data; often an empty dictionary or minimal confirmation upon successful deletion.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Delete user from orgSENTRY_DELETE_USER_FROM_ORGAcciónRemoves a scim-managed member from a sentry organization that has scim enabled, permanently revoking their access.
SENTRY_DELETE_USER_FROM_ORGAcciónRemoves a scim-managed member from a sentry organization that has scim enabled, permanently revoking their access.
Parámetros de entrada
member_idstringObligatorioThe unique identifier of the organization member to remove.
organization_id_or_slugstringObligatorioThe identifier or slug of the Sentry organization.
Parámetros de salida
dataobjectData from the Sentry API response; usually empty for successful SCIM DELETE operations.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch issue event by idSENTRY_FETCH_ISSUE_EVENT_BY_IDAcciónRetrieves the 'latest', 'oldest', or 'recommended' event for a sentry issue, optionally filtered by environment(s).
SENTRY_FETCH_ISSUE_EVENT_BY_IDAcciónRetrieves the 'latest', 'oldest', or 'recommended' event for a sentry issue, optionally filtered by environment(s).
Parámetros de entrada
event_idstringObligatorioenumSpecifies the event to retrieve: 'latest', 'oldest', or 'recommended'.
latestoldestrecommendedissue_idintegerObligatorioThe unique numerical ID of the Sentry issue for which to fetch an event.
environmentstring[]Filter by environment names; if omitted, events from all environments are considered.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch organization alert rulesSENTRY_FETCH_ORGANIZATION_ALERT_RULESAcciónRetrieves a list of active metric alert rules for an existing sentry organization, identified by its id or slug.
SENTRY_FETCH_ORGANIZATION_ALERT_RULESAcciónRetrieves a list of active metric alert rules for an existing sentry organization, identified by its id or slug.
Parámetros de entrada
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization for which alert rules are to be fetched. Slugs are typically the organization's name in lowercase, using hyphens for spaces (e.g., 'acme-corp').
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch organization release threshold statusesSENTRY_FETCH_ORGANIZATION_RELEASE_THRESHOLD_STATUSESAcciónRetrieves derived health statuses for release thresholds in a sentry organization for a given time range, optionally filtered by environment, project, or release; `start` and `end` times must be provided together. **`[warning]`**: this api is experimental (alpha) and subject to change!
SENTRY_FETCH_ORGANIZATION_RELEASE_THRESHOLD_STATUSESAcciónRetrieves derived health statuses for release thresholds in a sentry organization for a given time range, optionally filtered by environment, project, or release; `start` and `end` times must be provided together. **`[warning]`**: this api is experimental (alpha) and subject to change!
Parámetros de entrada
endstringObligatorioThe inclusive end of the time series range for querying release threshold statuses. Accepts UTC ISO8601 format (e.g., '2023-01-01T23:59:59Z') or epoch seconds (e.g., '1672617599').
startstringObligatorioThe start of the time series range for querying release threshold statuses. Accepts UTC ISO8601 format (e.g., '2023-01-01T00:00:00Z') or epoch seconds (e.g., '1672531200').
releasestring[]A list of release versions (e.g., '1.0.0', 'my-app@2.1.3') to filter the release threshold statuses by. If not provided, statuses for all releases within the time range are considered.
environmentstring[]A list of environment names (e.g., 'production', 'staging') to filter the release threshold statuses by. If not provided, statuses for all environments are considered.
projectSlugstring[]A list of project slugs (e.g., 'frontend', 'backend-api') to filter the release threshold statuses by. If not provided, statuses for all projects in the organization are considered.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization for which to fetch release threshold statuses.
Parámetros de salida
dataobjectObligatorioA dictionary where keys are in the format `{release_version}-{project_slug}`. Each value contains a list of enriched release thresholds, including their derived health statuses and the full serialized `release_threshold` instance.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch organization replay countSENTRY_FETCH_ORGANIZATION_REPLAY_COUNTAcciónRetrieves the total count of session replays for a specified sentry organization, filterable by time range, environment, project, and query.
SENTRY_FETCH_ORGANIZATION_REPLAY_COUNTAcciónRetrieves the total count of session replays for a specified sentry organization, filterable by time range, environment, project, and query.
Parámetros de entrada
endstringThe end timestamp for the query period, in ISO-8601 format (e.g., `2001-12-14T12:34:56.7890Z`).
querystringA Sentry search query string to further filter replays. Example: `(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)`. Refer to Sentry documentation for detailed query syntax.
startstringThe start timestamp for the query period, in ISO-8601 format (e.g., `2001-12-14T12:34:56.7890Z`).
projectinteger[]A list of project IDs to filter results by. Use `[-1]` to include all available projects within the organization.
environmentstring[]A list of environment names to filter results by (e.g., production, staging).
statsPeriodstringA relative time period for the query, which overrides `start` and `end` if provided. Format is a number followed by `d` (days), `h` (hours), `m` (minutes), `s` (seconds), or `w` (weeks). For example, `24h` queries data from the last 24 hours.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the replay count data based on the provided query filters.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch organization replay detailsSENTRY_FETCH_ORGANIZATION_REPLAY_DETAILSAcciónRetrieves detailed information for a specific replay session by id within a sentry organization, optionally filtering time-series data using `statsperiod` or `start`/`end`, and further refining by projects, environments, or specific fields.
SENTRY_FETCH_ORGANIZATION_REPLAY_DETAILSAcciónRetrieves detailed information for a specific replay session by id within a sentry organization, optionally filtering time-series data using `statsperiod` or `start`/`end`, and further refining by projects, environments, or specific fields.
Parámetros de entrada
endstringInclusive end of the time series range (UTC ISO8601 or epoch seconds). Use with `start`; alternative to `statsPeriod`.
sortstringField to sort replay details by (prefix with '-' for descending, e.g., '-started_at').
fieldstring[]Specific fields to include in the response (e.g., 'activity', 'browser'). See `FieldEnm` for valid fields.
querystringStructured query string to filter replay details (e.g., `user.email:test@example.com`, `has:error`).
startstringStart of the time series range (UTC ISO8601 or epoch seconds). Use with `end`; alternative to `statsPeriod`.
cursorstringPagination cursor for fetching the next or previous set of results.
projectinteger[]List of project IDs to filter replay details by.
per_pageintegerMaximum number of items to return per page for pagination.
replay_idstringObligatorioID of the specific replay session to retrieve.
environmentstringEnvironment (e.g., 'production', 'staging') to filter replay details by.
statsPeriodstringTime range for series data, relative to now (e.g., `1d`, `2h`). Use if not providing `start` and `end`.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization for the replay.
Parámetros de salida
dataobjectObligatorioDetailed information of the fetched replay, structured by requested fields.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch organization replay selectorsSENTRY_FETCH_ORGANIZATION_REPLAY_SELECTORSAcciónFetches replay selectors (css selectors for session replays) for a sentry organization, filterable by various criteria; use either `statsperiod` or `start`/`end` for time range, not both.
SENTRY_FETCH_ORGANIZATION_REPLAY_SELECTORSAcciónFetches replay selectors (css selectors for session replays) for a sentry organization, filterable by various criteria; use either `statsperiod` or `start`/`end` for time range, not both.
Parámetros de entrada
endstringEnd of time range (UTC ISO8601 or epoch seconds). Use with `start`; not with `statsPeriod`.
sortstringField to sort replay selectors by. Refer to Sentry API docs for available fields.
querystringSentry search query syntax for filtering. See Sentry docs for syntax/fields.
startstringStart of time range (UTC ISO8601 or epoch seconds). Use with `end`; not with `statsPeriod`.
cursorstringPagination cursor for fetching next/previous page.
projectinteger[]Filter by project IDs.
per_pageintegerMaximum items per page (API defaults to 100 if not specified, max 100).
environmentstring[]Filter by environment names.
statsPeriodstringTime range (e.g., `1d`, `2h`; m, h, d, w units). Use instead of `start`/`end`.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioFetched replay selectors and related Sentry API data/metadata.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch project environment detailsSENTRY_FETCH_PROJECT_ENVIRONMENT_DETAILSAcciónRetrieves detailed information for a specific environment within a sentry project.
SENTRY_FETCH_PROJECT_ENVIRONMENT_DETAILSAcciónRetrieves detailed information for a specific environment within a sentry project.
Parámetros de entrada
environmentstringObligatorioThe name of the environment (e.g., production, staging, development).
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch project ownership detailsSENTRY_FETCH_PROJECT_OWNERSHIP_DETAILSAcciónRetrieves the ownership configuration, like codeowners rules or issue owner settings, for a specified sentry project.
SENTRY_FETCH_PROJECT_OWNERSHIP_DETAILSAcciónRetrieves the ownership configuration, like codeowners rules or issue owner settings, for a specified sentry project.
Parámetros de entrada
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project for which ownership details are to be retrieved. This is used as a path parameter in the API request.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the project belongs. This is used as a path parameter in the API request.
Parámetros de salida
dataobjectObligatorioA dictionary containing the project's ownership configuration. This typically includes rules defining ownership based on paths or other criteria.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch project release filesSENTRY_FETCH_PROJECT_RELEASE_FILESAcciónRetrieves artifact files (e.g., source maps, debug information files) for a specific release version in a sentry project; requires existing organization, project, and release version with associated files.
SENTRY_FETCH_PROJECT_RELEASE_FILESAcciónRetrieves artifact files (e.g., source maps, debug information files) for a specific release version in a sentry project; requires existing organization, project, and release version with associated files.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release (e.g., '1.0.0', 'my-app@2.3.12').
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the organization.
Parámetros de salida
dataobjectObligatorioA dictionary representing the list of files for the given release. Each key is a file identifier, and the value contains file metadata such as 'id', 'name', 'sha1', 'size', 'dateCreated', 'headers', and 'dist'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch project replay clicksSENTRY_FETCH_PROJECT_REPLAY_CLICKSAcciónFetches a list of user click interactions for a specific sentry session replay, including the clicked dom element id and timestamp.
SENTRY_FETCH_PROJECT_REPLAY_CLICKSAcciónFetches a list of user click interactions for a specific sentry session replay, including the clicked dom element id and timestamp.
Parámetros de entrada
querystringSentry search query to filter click events (e.g., `(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)`).
cursorstringPagination cursor to navigate through click events.
per_pageintegerMaximum number of click events per page (default/max 100).
replay_idstringObligatorioThe ID of the Sentry session replay.
environmentstring[]List of environment names to filter click data.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioResponse data containing a list of click events, each typically including `clickId`, `nodeId`, `timestamp`, and DOM node information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch replay recording segmentSENTRY_FETCH_REPLAY_RECORDING_SEGMENTAcciónRetrieves a specific recording segment for a sentry replay, requiring valid organization, project, replay, and segment identifiers.
SENTRY_FETCH_REPLAY_RECORDING_SEGMENTAcciónRetrieves a specific recording segment for a sentry replay, requiring valid organization, project, replay, and segment identifiers.
Parámetros de entrada
replay_idstringObligatorioThe unique identifier of the replay to retrieve. This is a 32-character hexadecimal string (UUID4) without dashes. Example: "a6ef355da2bb43f8a7825c45f98c5177".
segment_idintegerObligatorioThe ID of the specific recording segment within the replay to retrieve. This is an integer. Example: 0.
project_id_or_slugstringObligatorioThe ID or slug of the project to which the replay belongs. Examples: 'javascript', 'my-project'.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the replay belongs. Examples: 'sentry', 'my-org'.
Parámetros de salida
dataobjectObligatorioA dictionary containing the replay recording segment data.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get activation of alert rule for organizationSENTRY_GET_ACTIVATION_OF_ALERT_RULE_FOR_ORGANIZATIONAcciónRetrieves all activations (triggered instances) for a specific metric alert rule within a sentry organization.
SENTRY_GET_ACTIVATION_OF_ALERT_RULE_FOR_ORGANIZATIONAcciónRetrieves all activations (triggered instances) for a specific metric alert rule within a sentry organization.
Parámetros de entrada
alert_rule_idintegerObligatorioThe numeric identifier of the metric alert rule whose activations are to be retrieved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or slug of the Sentry organization to which the alert rule belongs.
Parámetros de salida
dataobjectObligatorioThe API response payload. This field is expected to contain or represent the list of activations for the specified alert rule. Each activation typically includes details such as its unique identifier and the `date_added` timestamp indicating when the alert was triggered.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get integration details by orgSENTRY_GET_INTEGRATION_DETAILS_BY_ORGAcciónRetrieves details for a specific integration, identified by `integration id`, installed within an existing sentry organization, identified by `organization id or slug`.
SENTRY_GET_INTEGRATION_DETAILS_BY_ORGAcciónRetrieves details for a specific integration, identified by `integration id`, installed within an existing sentry organization, identified by `organization id or slug`.
Parámetros de entrada
integration_idstringObligatorioThe unique ID of the integration installed for the specified organization (e.g., 'github').
organization_id_or_slugstringObligatorioThe Sentry organization's unique ID or human-readable slug (e.g., 'the-acme-corp').
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization by id or slugSENTRY_GET_ORGANIZATION_BY_ID_OR_SLUGAcciónRetrieves a sentry organization by its id or slug; use the `detailed` parameter to optionally exclude project and team details for a more concise response.
SENTRY_GET_ORGANIZATION_BY_ID_OR_SLUGAcciónRetrieves a sentry organization by its id or slug; use the `detailed` parameter to optionally exclude project and team details for a more concise response.
Parámetros de entrada
detailedstringSpecify `"0"` to exclude project and team details for a more concise organization summary; otherwise, these details are included.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the retrieved organization.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization detailsSENTRY_GET_ORGANIZATION_DETAILSAcciónRetrieves sentry organizations accessible via the current authentication, with scope varying between user (all in region) and api key (linked org only) credentials.
SENTRY_GET_ORGANIZATION_DETAILSAcciónRetrieves sentry organizations accessible via the current authentication, with scope varying between user (all in region) and api key (linked org only) credentials.
Parámetros de entrada
ownerbooleanSet to `true` to list only organizations where the authenticated user is an owner.
querystringFilter results using Sentry's query syntax. Supported fields: `id` (organization ID), `slug` (organization slug), `status` (current status like 'active', 'pending_deletion'), `email` or `member_id` (member's email or ID), `platform` (project platform like 'python'), and `query` (substring match on organization name, slug, member details).
cursorstringOpaque cursor for pagination to retrieve next/previous result sets.
sortBystringSort results by 'members' (number of members), 'projects' (number of projects), or 'events' (number of events in past 24h), in descending order. Defaults to creation date.
Parámetros de salida
dataobjectObligatorioContains the list of organizations matching the query criteria, along with their respective details.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization environmentsSENTRY_GET_ORGANIZATION_ENVIRONMENTSAcciónRetrieves a list of deployment environments (e.g., 'production', 'staging') for a sentry organization, optionally filtering by visibility.
SENTRY_GET_ORGANIZATION_ENVIRONMENTSAcciónRetrieves a list of deployment environments (e.g., 'production', 'staging') for a sentry organization, optionally filtering by visibility.
Parámetros de entrada
visibilitystringenumFilters environments by visibility: 'all' (includes hidden), 'hidden', or 'visible'. Defaults to 'visible' if not provided.
allhiddenvisibleorganization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioRaw Sentry API response, typically a list of environment objects, each describing an environment with its 'id' and 'name'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization issue detailsSENTRY_GET_ORGANIZATION_ISSUE_DETAILSAcciónRetrieves detailed information for a specific issue within a sentry organization.
SENTRY_GET_ORGANIZATION_ISSUE_DETAILSAcciónRetrieves detailed information for a specific issue within a sentry organization.
Parámetros de entrada
issue_idstringObligatorioThe unique identifier (ID) of the issue for which details are to be retrieved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization to which the issue belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the detailed information of the issue. This typically includes attributes such as title, first seen and last seen timestamps, number of comments, user reports, and summarized event data.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization monitor by id or slugSENTRY_GET_ORGANIZATION_MONITOR_BY_ID_OR_SLUGAcciónRetrieves detailed information for a specific monitor (e.g., a cron job or scheduled task) within an organization.
SENTRY_GET_ORGANIZATION_MONITOR_BY_ID_OR_SLUGAcciónRetrieves detailed information for a specific monitor (e.g., a cron job or scheduled task) within an organization.
Parámetros de entrada
environmentstring[]A list of environment names to filter the monitor details by. If omitted, details for all environments are considered.
monitor_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the monitor whose details are to be retrieved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the organization to which the monitor belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the detailed attributes and configuration of the monitor.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization release versionSENTRY_GET_ORGANIZATION_RELEASE_VERSIONAcciónRetrieves detailed information, including optional health data and statistics, for a specific release version within a sentry organization.
SENTRY_GET_ORGANIZATION_RELEASE_VERSIONAcciónRetrieves detailed information, including optional health data and statistics, for a specific release version within a sentry organization.
Parámetros de entrada
sortstringenumSorting order for data within release details (e.g., environments by adoption).
crash_free_sessionscrash_free_usersdatesessionsusersquerystringFilter data for this release using Sentry's search syntax (e.g., to find specific events). See Sentry documentation for syntax. Example from Sentry: `'''(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)'''`
healthbooleanInclude health data (e.g., crash rates, session statistics) with release details.
statusstringenumFilter release details by status ('open' or 'archived').
archivedopenversionstringObligatorioThe unique version identifier of the release. This can be a semantic version (e.g., '1.2.3'), a commit hash, or any string used to identify the release (e.g., 'backend@1.0.0-alpha').
project_idstringID of a specific project to scope release details; if omitted, details may cover multiple projects.
adoptionStagesbooleanInclude information about the release's adoption stages.
healthStatsPeriodstringenumTime window for health statistics, used if 'health' is true.
14d1d1h24h2d30d48h7d90dsummaryStatsPeriodstringenumTime window for summary statistics.
14d1d1h24h2d30d48h7d90dorganization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the detailed information for the specified release version. The structure of this dictionary can vary based on the data available for the release and the query parameters used (e.g., inclusion of health data).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization sessionsSENTRY_GET_ORGANIZATION_SESSIONSAcciónRetrieves time series data for an organization's sentry project release health sessions; note session duration data (e.g., using `avg(session.duration)`) may be incomplete after jan 12, 2023, results are capped at 10,000 data points, `statsperiod` overrides `start`/`end` timestamps, and the `interval` parameter (default/min '1h', max '1d', format like `statsperiod`) dictates time series resolution and must cleanly divide one day.
SENTRY_GET_ORGANIZATION_SESSIONSAcciónRetrieves time series data for an organization's sentry project release health sessions; note session duration data (e.g., using `avg(session.duration)`) may be incomplete after jan 12, 2023, results are capped at 10,000 data points, `statsperiod` overrides `start`/`end` timestamps, and the `interval` parameter (default/min '1h', max '1d', format like `statsperiod`) dictates time series resolution and must cleanly divide one day.
Parámetros de entrada
endstringEnd of the query period (ISO-8601 format). Ignored if `statsPeriod` is provided.
fieldstring[]ObligatorioFields for session statistics (e.g., `sum(session)`, `count_unique(user)`, `p99(session.duration)`, `crash_free_rate(user)`). Session duration aggregations may be incomplete for data after Jan 12, 2023.
querystringSentry search query to filter sessions (e.g., `(transaction:foo AND release:abc)`). See Sentry docs for syntax.
startstringStart of the query period (ISO-8601 format). Ignored if `statsPeriod` is provided.
groupBystring[]Properties to group session data by (e.g., `project`, `release`, `environment`, `session.status`).
orderBystringField from `field` parameter to order results by. Prefix with '-' for descending (e.g., `-sum(session)`).
projectinteger[]Project IDs to filter sessions by. Use `[-1]` for all accessible projects.
intervalstringTime series data resolution (e.g., '1h', '1d'; format like `statsPeriod`). Minimum '1h', maximum '1d'. Must cleanly divide one day.
per_pageintegerMaximum number of groups (aggregated data points based on `groupBy`) per request.
environmentstring[]Environment names to filter sessions by (e.g., 'production', 'staging').
statsPeriodstringRelative query period (e.g., '24h', '7d'), overrides `start` and `end`. Uses 'd' (days), 'h' (hours), 'm' (minutes), 's' (seconds), or 'w' (weeks).
includeSeriesintegerSet to `0` to exclude, `1` (API default) to include time series data.
includeTotalsintegerSet to `0` to exclude, `1` (API default) to include totals.
organization_id_or_slugstringObligatorioUnique ID or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioRetrieved session statistics, including groups, series, and totals, structured based on request parameters.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get organization stats summarySENTRY_GET_ORGANIZATION_STATS_SUMMARYAcciónRetrieves summarized event statistics for a sentry organization, aggregated by project, allowing queries for event counts or unique occurrences over a specified time period and resolution, with filtering by project, category, and outcome.
SENTRY_GET_ORGANIZATION_STATS_SUMMARYAcciónRetrieves summarized event statistics for a sentry organization, aggregated by project, allowing queries for event counts or unique occurrences over a specified time period and resolution, with filtering by project, category, and outcome.
Parámetros de entrada
endstringInclusive end of the time series range (UTC ISO8601 datetime string or Unix timestamp). Use with `start` instead of `statsPeriod`.
fieldstringObligatorioenumAggregation field for event counts. Interpretation depends on event type: `sum(quantity)`: For attachments, total size in bytes. For sessions, total events within sessions. For others, event count. `sum(times_seen)`: Sum of unique occurrences. For sessions, count of unique sessions. For attachments, total attachments.
sum(quantity)sum(times_seen)startstringStart of the time series range (UTC ISO8601 datetime string or Unix timestamp). Use with `end` instead of `statsPeriod`.
reasonstringReason an event was filtered or dropped (e.g., `project_quota`, `invalid_origin`).
outcomestringenumFilter by event outcome status (e.g., accepted, filtered, rate-limited).
acceptedfilteredrate_limitedinvalidabuseclient_discardcardinality_limitedprojectarrayList of project IDs (strings or integers) to filter by. Omit or use empty list for all projects.
categorystringenumFilter by event category. If 'attachment', other categories cannot be included. If 'error', `default` and `security` are also included.
errortransactionattachmentreplaysprofilesdownloadbooleanIf true, triggers a CSV download of the response; otherwise JSON.
intervalstringTime series resolution (e.g., `1h`). Default is `1h`. Minimum `1h`. Intervals must cleanly divide one day and cannot exceed `1d`.
statsPeriodstringRelative time series range (e.g., `1d`, `2h`). Units: `m`, `h`, `d`, `w`. Use instead of `start` and `end`.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioSummarized statistics, typically including start/end times, aggregated data (by project or totals), and counts based on request filters.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project eventsSENTRY_GET_PROJECT_EVENTSAcciónRetrieves a list of error events for a specified project within a sentry organization, with options for pagination and detail level.
SENTRY_GET_PROJECT_EVENTSAcciónRetrieves a list of error events for a specified project within a sentry organization, with options for pagination and detail level.
Parámetros de entrada
fullbooleanIf `True`, retrieves full event details including stacktraces; otherwise, a summary is returned.
cursorstringOpaque cursor for pagination, pointing to the start of the next/previous page, typically from a 'Link' header.
samplebooleanIf `True`, returns events in a pseudo-random yet deterministic order.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioSentry API response containing the list of project events; structure depends on the 'full' parameter and Sentry's API.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project event statsSENTRY_GET_PROJECT_EVENT_STATSAcciónRetrieves event statistics for a specified sentry project, returning data as [timestamp, count] pairs; ensure `since` precedes `until` if both are provided.
SENTRY_GET_PROJECT_EVENT_STATSAcciónRetrieves event statistics for a specified sentry project, returning data as [timestamp, count] pairs; ensure `since` precedes `until` if both are provided.
Parámetros de entrada
statstringenumSpecifies the type of event statistic to query.
receivedrejectedblacklistedgeneratedsincestringUNIX timestamp (seconds since epoch) for the start of the query period.
untilstringUNIX timestamp (seconds since epoch) for the end of the query period.
resolutionstringenumTime resolution for the statistics.
10s1h1dproject_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the organization.
Parámetros de salida
dataobjectObligatorioQueried event statistics, typically a series of [timestamp, count] pairs.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project hookSENTRY_GET_PROJECT_HOOKAcciónRetrieves detailed information for an existing service hook, identified by `hook id`, within a specific sentry project and organization.
SENTRY_GET_PROJECT_HOOKAcciónRetrieves detailed information for an existing service hook, identified by `hook id`, within a specific sentry project and organization.
Parámetros de entrada
hook_idstringObligatorioThe unique identifier (GUID) of the service hook to be retrieved. This ID is assigned when the hook is created.
project_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry project to which the service hook is bound.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization to which the project and its service hook belong.
Parámetros de salida
dataobjectObligatorioA dictionary containing the detailed information of the retrieved service hook. This includes its configuration, events it listens to, and other relevant attributes.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project listSENTRY_GET_PROJECT_LISTAcciónRetrieves a list of sentry projects (representing monitored applications or services), useful for discovery or selecting a project for subsequent operations.
SENTRY_GET_PROJECT_LISTAcciónRetrieves a list of sentry projects (representing monitored applications or services), useful for discovery or selecting a project for subsequent operations.
Parámetros de entrada
cursorstringOpaque cursor for paginating through project lists, typically obtained from pagination details in a previous API response.
Parámetros de salida
dataobjectObligatorioDictionary from Sentry containing the list of projects; refer to Sentry's 'List Your Projects' API documentation for schema details.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project monitor by idSENTRY_GET_PROJECT_MONITOR_BY_IDAcciónRetrieves detailed information for a specific sentry cron monitor, provided the organization, project, and monitor exist.
SENTRY_GET_PROJECT_MONITOR_BY_IDAcciónRetrieves detailed information for a specific sentry cron monitor, provided the organization, project, and monitor exist.
Parámetros de entrada
monitor_id_or_slugstringObligatorioID or slug of the Sentry cron monitor.
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get project rule detailsSENTRY_GET_PROJECT_RULE_DETAILSAcciónRetrieves detailed information for a specific issue alert rule within a sentry project.
SENTRY_GET_PROJECT_RULE_DETAILSAcciónRetrieves detailed information for a specific issue alert rule within a sentry project.
Parámetros de entrada
rule_idintegerObligatorioID of the alert rule.
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDetailed attributes and configuration of the alert rule.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get scim group by team idSENTRY_GET_SCIM_GROUP_BY_TEAM_IDAcciónRetrieves scim group information for a sentry team, if scim is enabled for the organization; the 'members' list in the response is limited to 10,000 entries.
SENTRY_GET_SCIM_GROUP_BY_TEAM_IDAcciónRetrieves scim group information for a sentry team, if scim is enabled for the organization; the 'members' list in the response is limited to 10,000 entries.
Parámetros de entrada
team_idintegerObligatorioThe unique numeric identifier of the Sentry team whose SCIM group information is to be retrieved.
organization_id_or_slugstringObligatorioThe slug (human-readable identifier) or numeric ID of the Sentry organization to which the team belongs.
Parámetros de salida
dataobjectObligatorioSCIM representation of the Sentry team, including attributes and members, conforming to the SCIM Group schema.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get sentry app installations for organizationSENTRY_GET_SENTRY_APP_INSTALLATIONS_FOR_ORGANIZATIONAcciónRetrieves a list of sentry app installations for a given organization, which must exist.
SENTRY_GET_SENTRY_APP_INSTALLATIONS_FOR_ORGANIZATIONAcciónRetrieves a list of sentry app installations for a given organization, which must exist.
Parámetros de entrada
organization_id_or_slugstringObligatorioThe ID or slug of the organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the list of Sentry App installations for the specified organization.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get team members by id or slugSENTRY_GET_TEAM_MEMBERS_BY_ID_OR_SLUGAcciónRetrieves a list of all active members for a sentry team, excluding users with pending invitations.
SENTRY_GET_TEAM_MEMBERS_BY_ID_OR_SLUGAcciónRetrieves a list of all active members for a sentry team, excluding users with pending invitations.
Parámetros de entrada
cursorstringA pagination cursor used to fetch the next or previous set of results. Obtain this from the 'Link' header of the previous response.
team_id_or_slugstringObligatorioThe ID or slug of the Sentry team.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA list of team members. The structure of each member object is not explicitly detailed but typically includes user information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Get who viewed replay by projectSENTRY_GET_WHO_VIEWED_REPLAY_BY_PROJECTAcciónRetrieves users who viewed a specific, existing session replay within a sentry project and organization.
SENTRY_GET_WHO_VIEWED_REPLAY_BY_PROJECTAcciónRetrieves users who viewed a specific, existing session replay within a sentry project and organization.
Parámetros de entrada
replay_idstringObligatorioThe unique identifier of the session replay. This is a 32-character hexadecimal string (UUIDv4 format without dashes).
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List organization dashboardsSENTRY_LIST_ORGANIZATION_DASHBOARDSAcciónRetrieves a list of custom dashboards for a sentry organization, with pagination support.
SENTRY_LIST_ORGANIZATION_DASHBOARDSAcciónRetrieves a list of custom dashboards for a sentry organization, with pagination support.
Parámetros de entrada
cursorstringOpaque cursor for pagination, used to retrieve the next or previous page of dashboards. Obtain from the 'Link' header or pagination metadata of a previous API response.
per_pageintegerMaximum number of dashboard records per page. Defaults to Sentry's setting (often 50) if unspecified. Max: 100.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization whose dashboards are to be listed.
Parámetros de salida
dataobjectObligatorioDictionary with the API response, including the list of custom dashboards for the organization and any applicable pagination information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List organization membersSENTRY_LIST_ORGANIZATION_MEMBERSAcciónLists all members, including those with pending invitations, for a sentry organization.
SENTRY_LIST_ORGANIZATION_MEMBERSAcciónLists all members, including those with pending invitations, for a sentry organization.
Parámetros de entrada
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List organization releasesSENTRY_LIST_ORGANIZATION_RELEASESAcciónRetrieves a list of releases for an existing sentry organization, optionally filtering by a query string that matches the start of the release version.
SENTRY_LIST_ORGANIZATION_RELEASESAcciónRetrieves a list of releases for an existing sentry organization, optionally filtering by a query string that matches the start of the release version.
Parámetros de entrada
querystringAn optional string to filter releases. The filter performs a "starts with" match on the release version. For example, "1.0" would match "1.0.1" and "1.0-beta", while "backend-" would match "backend-v2.1". If omitted, all releases are returned.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization whose releases are to be listed.
Parámetros de salida
dataobjectObligatorioRaw Sentry API response, typically a JSON array of release objects from the '/api/0/organizations/{organization_id_or_slug}/releases/' endpoint.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List organization repositoriesSENTRY_LIST_ORGANIZATION_REPOSITORIESAcciónRetrieves a list of version control repositories for a specific sentry organization, which must exist and is identified by its id or slug.
SENTRY_LIST_ORGANIZATION_REPOSITORIESAcciónRetrieves a list of version control repositories for a specific sentry organization, which must exist and is identified by its id or slug.
Parámetros de entrada
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization for which to list repositories. The slug is the URL-friendly name of the organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List organization user teamsSENTRY_LIST_ORGANIZATION_USER_TEAMSAcciónRetrieves a list of all teams that the authenticated user has access to within the specified sentry organization.
SENTRY_LIST_ORGANIZATION_USER_TEAMSAcciónRetrieves a list of all teams that the authenticated user has access to within the specified sentry organization.
Parámetros de entrada
organization_id_or_slugstringObligatorioIdentifier (ID) or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioList of team objects, each detailing a team the user is a member of in the specified organization.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List project usersSENTRY_LIST_PROJECT_USERSAcciónRetrieves users who have interacted with or are recognized within a specific sentry project, optionally filtered by a query.
SENTRY_LIST_PROJECT_USERSAcciónRetrieves users who have interacted with or are recognized within a specific sentry project, optionally filtered by a query.
Parámetros de entrada
querystringAn optional query string to filter the list of users. Use prefixes like `id:`, `email:`, `username:`, or `ip:` to target specific fields. For example, `email:foo@example.com` or `username:john.doe`.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization.
Parámetros de salida
dataobjectObligatorioList of Sentry user objects, each detailing a user (e.g., `id`, `username`, `email`). Note: Sentry API might structure this as a dictionary.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List SCIM v2 organization usersSENTRY_LIST_SCIM_V2_ORGANIZATION_USERSAcciónRetrieves a paginated list of scim (system for cross-domain identity management) users for a sentry organization, allowing for filtering, pagination, and attribute exclusion.
SENTRY_LIST_SCIM_V2_ORGANIZATION_USERSAcciónRetrieves a paginated list of scim (system for cross-domain identity management) users for a sentry organization, allowing for filtering, pagination, and attribute exclusion.
Parámetros de entrada
countintegerMaximum number of user records per response (max 100).
filterstringSCIM filter expression to narrow down users (e.g., `userName eq "user@example.com"`). Only `eq` operator is supported.
startIndexintegerThe 1-based starting index for pagination.
excludedAttributesstring[]Attribute names to exclude from user objects; only `members` is currently supported for exclusion.
organization_id_or_slugstringObligatorioThe organization's unique identifier (ID) or human-readable slug.
Parámetros de salida
dataobjectObligatorioPaginated list of SCIM users matching the query, structured per SCIM User Resource Properties schema.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List teams in organizationSENTRY_LIST_TEAMS_IN_ORGANIZATIONAcciónLists teams for an existing sentry organization, optionally including project details and supporting pagination via a cursor.
SENTRY_LIST_TEAMS_IN_ORGANIZATIONAcciónLists teams for an existing sentry organization, optionally including project details and supporting pagination via a cursor.
Parámetros de entrada
cursorstringPagination cursor for retrieving the next or previous page of results.
detailedstringIf '1', includes project details for each team. If '0' or not provided, excludes project details.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Create an external teamSENTRY_MANAGE_TEAM_EXTERNAL_INTEGRATIONSAcciónLinks an external team or channel (e.g., slack, github) to an existing sentry team, using a pre-configured integration for the specified provider and its valid sentry integration id.
SENTRY_MANAGE_TEAM_EXTERNAL_INTEGRATIONSAcciónLinks an external team or channel (e.g., slack, github) to an existing sentry team, using a pre-configured integration for the specified provider and its valid sentry integration id.
Parámetros de entrada
providerstringObligatorioenumThe third-party provider of the external team or channel.
githubgithub_enterpriseslackgitlabmsteamscustom_scmexternal_idstringOptional ID of a user within the external provider (e.g., Slack user ID).
external_namestringObligatorioName of the external team or channel to link (e.g., #engineering, @dev-team).
integration_idintegerObligatorioSentry ID for the integration with the specified provider (e.g., a specific Slack workspace or GitHub organization).
team_id_or_slugstringObligatorioThe ID or slug of the Sentry team to link.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization where the team resides.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Modify organization monitor dataSENTRY_MODIFY_ORGANIZATION_MONITOR_DATAAcciónUpdates an existing sentry monitor's properties, requiring `name` and `type` (must be 'cron job'), and optionally `slug`, `status`, `owner`, or `is muted` state for a monitor within the specified organization.
SENTRY_MODIFY_ORGANIZATION_MONITOR_DATAAcciónUpdates an existing sentry monitor's properties, requiring `name` and `type` (must be 'cron job'), and optionally `slug`, `status`, `owner`, or `is muted` state for a monitor within the specified organization.
Parámetros de entrada
namestringObligatorioThe new name for the monitor; used in notifications and helps identify the monitor in the Sentry UI.
slugstringA new unique slug for the monitor within the organization (pattern: `^[a-z][a-z0-9_\-]*$`). Changing this slug requires updating any instrumented check-in calls for this monitor. Omit to leave current slug unchanged.
typestringObligatorioenumThe type of the monitor; must be 'cron_job', indicating a recurring task.
cron_jobownerstringThe new owner of the monitor, specified as a team or user ID (e.g., 'user:USER_ID' or 'team:TEAM_ID'). Omit to leave current owner unchanged.
statusstringenumThe new status for the monitor. 'active' monitors accept events and count towards the quota; 'disabled' monitors do not accept events and are excluded from the quota.
activedisabledis_mutedbooleanSet to `true` to prevent this monitor from creating incidents (alerts), or `false` to allow them. Omit to leave current muted status unchanged.
monitor_id_or_slugstringObligatorioID or slug of the Sentry monitor to be updated.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization to which the monitor belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the full representation of the updated monitor.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Modify organization notification actionSENTRY_MODIFY_ORGANIZATION_NOTIFICATION_ACTIONAcciónModifies an organization's notification action, specifically for `spike-protection` triggers.
SENTRY_MODIFY_ORGANIZATION_NOTIFICATION_ACTIONAcciónModifies an organization's notification action, specifically for `spike-protection` triggers.
Parámetros de entrada
projectsstring[]A list of project slugs for which this notification action will be active, applying only to these projects if provided. An empty list's interpretation (e.g., no projects or all projects) may vary.
action_idintegerObligatorioThe unique numerical ID of the specific notification action to be modified.
service_typestringObligatorioThe service through which the notification will be sent. Supported services are: `email`, `slack`, `sentry_notification`, `pagerduty`, `opsgenie`.
trigger_typestringObligatorioSpecifies the type of event that triggers the notification. Currently, the only supported value is `spike-protection`.
integration_idintegerThe ID of the integration for the notification service, required if `service_type` is `slack`, `pagerduty`, or `opsgenie`.
target_displaystringA human-readable name for the notification target (e.g., a Slack channel name like '#critical-alerts' or an Opsgenie team name). This is required if `service_type` is `slack` or `opsgenie`.
target_identifierstringThe unique identifier of the notification target within the chosen service (e.g., a Slack channel ID like 'C012AB3CD' or an Opsgenie team ID). This is required if `service_type` is `slack` or `opsgenie`.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which this notification action belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the modified notification action.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Modify organization settingsSENTRY_MODIFY_ORGANIZATION_SETTINGSAcciónUpdates settings for a sentry organization, such as name, slug, member roles, privacy, and integrations; if `avatartype` is 'upload', `avatar` (base64 image) is required.
SENTRY_MODIFY_ORGANIZATION_SETTINGSAcciónUpdates settings for a sentry organization, such as name, slug, member roles, privacy, and integrations; if `avatartype` is 'upload', `avatar` (base64 image) is required.
Parámetros de entrada
namestringA new name for the organization.
slugstringA new unique slug for the organization, used in URLs.
avatarstringBase64 encoded image for the organization avatar; required if `avatarType` is 'upload'.
avatarTypestringenumType of organization avatar: 'letter_avatar' (initials) or 'upload' (custom image).
letter_avataruploadrequire2FAbooleanEnforce two-factor authentication (2FA) for all members.
safeFieldsstring[]List of global field names exempt from data scrubbing, ensuring their values are preserved.
defaultRolestringenumDefault role for new members when they join the organization.
memberadminmanagerownergithubPRBotbooleanAllow Sentry to comment on recent GitHub PRs suspected of introducing new issues. Requires GitHub integration.
dataScrubberbooleanEnforce server-side data scrubbing for all projects based on defined rules.
codecovAccessbooleanEnable Code Coverage Insights (Team plan or higher).
trustedRelaysobject[]List of local Relay configurations. Each is a dict with `name`, `publicKey`, `description`. Business/Enterprise plans. Warning: Overwrites existing configurations.
cancelDeletionbooleanCancel a pending deletion and restore the organization.
debugFilesRolestringenumMinimum role to download debug files (e.g., ProGuard mappings, source maps).
memberadminmanagerownerhideAiFeaturesbooleanHide AI-powered features in the Sentry UI for this organization.
isEarlyAdopterbooleanOpt the organization into new Sentry features before public release.
openMembershipbooleanAllow members to freely join any team without invitation or approval.
relayPiiConfigstringJSON string defining advanced, project-specific data scrubbing rules. Applies to new events and overwrites existing advanced configuration. Warning: Updating this field overwrites all existing advanced rules.
attachmentsRolestringenumMinimum role to download event attachments (e.g., crash reports, logs).
memberadminmanagerownerenhancedPrivacybooleanActivate enhanced privacy controls, limiting PII and source code display (e.g., in notifications).
githubOpenPRBotbooleanAllow Sentry to comment on open GitHub PRs with related error issues. Requires GitHub integration.
sensitiveFieldsstring[]List of global field names whose values will be scrubbed from event data across all projects.
scrapeJavaScriptbooleanAllow Sentry to fetch missing JavaScript source context from public URLs if source maps are incomplete.
scrubIPAddressesbooleanPrevent storage of IP addresses for new events in this organization.
alertsMemberWritebooleanGrant members `alerts:write` scope for alert rule management.
allowJoinRequestsbooleanAllow users to request to join the organization; admins approve/deny.
allowSharedIssuesbooleanEnable sharing limited issue details with anonymous users (e.g., via public links).
eventsMemberAdminbooleanGrant members `event:admin` scope to delete events.
githubNudgeInvitebooleanEnable Sentry to detect GitHub committers not in Sentry org and suggest inviting them. Requires GitHub integration.
storeCrashReportsintegerNumber of native crash reports (e.g., Minidumps) to store per issue (0=Disabled, -1=Unlimited).
dataScrubberDefaultsbooleanApply Sentry's default scrubbing rules (e.g., for passwords, credit cards) to event data for all projects.
issueAlertsThreadFlagbooleanConfigure Sentry Slack integration to post Issue Alert replies in threads. Requires Slack integration.
metricAlertsThreadFlagbooleanConfigure Sentry Slack integration to post Metric Alert replies in threads. Requires Slack integration.
organization_id_or_slugstringObligatorioThe ID or slug of the organization.
Parámetros de salida
dataobjectObligatorioDictionary containing the updated organization settings.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Modify release file attributesSENTRY_MODIFY_RELEASE_FILE_ATTRIBUTESAcciónUpdates attributes (e.g., name, distribution) of a specific file within an existing release, identified by organization, version, and file id.
SENTRY_MODIFY_RELEASE_FILE_ATTRIBUTESAcciónUpdates attributes (e.g., name, distribution) of a specific file within an existing release, identified by organization, version, and file id.
Parámetros de entrada
diststringNew distribution name for the file, often a unique build or version code.
namestringNew name for the file, including its full path.
file_idstringObligatorioID of the file to modify, typically a hash or unique identifier.
versionstringObligatorioVersion identifier of the release.
organization_id_or_slugstringObligatorioID or slug of the organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Patch SCIM group operationsSENTRY_PATCH_SCIM_GROUP_OPERATIONSAcciónPerforms scim patch operations (rfc 7644) to update attributes of a scim-enabled sentry team, provided scim integration is active for the organization.
SENTRY_PATCH_SCIM_GROUP_OPERATIONSAcciónPerforms scim patch operations (rfc 7644) to update attributes of a scim-enabled sentry team, provided scim integration is active for the organization.
Parámetros de entrada
team_idintegerObligatorioThe unique identifier of the Sentry team to be updated.
Operationsobject[]ObligatorioA list of SCIM patch operations to be applied to the team. Each operation specifies an action (e.g., add, remove, replace), a target path, and a value. Multiple operations can be provided to perform several updates in a single request.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization to which the team belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the SCIM representation of the team after the PATCH operations have been applied.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Deactivate an organization memberSENTRY_PATCH_USER_ACTIVE_STATUS_IN_ORGANIZATIONAcciónDeactivates and permanently deletes a sentry organization member by using a scim patch operation to set their 'active' attribute to 'false'.
SENTRY_PATCH_USER_ACTIVE_STATUS_IN_ORGANIZATIONAcciónDeactivates and permanently deletes a sentry organization member by using a scim patch operation to set their 'active' attribute to 'false'.
Parámetros de entrada
member_idstringObligatorioThe ID of the organization member to update.
Operationsobject[]ObligatorioA list of SCIM PATCH operations. For this action, must contain one operation setting the member's 'active' attribute to 'false', which deactivates and permanently deletes the member.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the SCIM representation of the member after the update operation, if applicable. May be empty if the member is deleted and no content is returned.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Add a symbol source to a projectSENTRY_POST_PROJECT_SYMBOL_SOURCESAcciónAdds a new custom symbol source (http, gcs, or s3) to a project for fetching debug symbols; if an `id` is provided, it must be unique for the project and not start with 'sentry:'.
SENTRY_POST_PROJECT_SYMBOL_SOURCESAcciónAdds a new custom symbol source (http, gcs, or s3) to a project for fetching debug symbols; if an `id` is provided, it must be unique for the project and not start with 'sentry:'.
Parámetros de entrada
idstringOptional unique identifier (auto-generated if omitted); must not start with `sentry:`.
urlstringBase URL for an HTTP symbol source. Required if `type` is `http`.
namestringObligatorioHuman-readable name for the symbol source.
typestringObligatorioenumType of the symbol source (e.g., `http`, `gcs`, `s3`), which determines required configuration fields.
httpgcss3bucketstringName of the Google Cloud Storage (GCS) or Amazon S3 bucket containing symbols. Required if `type` is `gcs` or `s3`.
prefixstringOptional path prefix within the GCS or S3 bucket. Applicable if `type` is `gcs` or `s3`.
regionstringenumAWS region for the S3 bucket (e.g., `us-east-1`). Required if `type` is `s3`.
us-east-2us-east-1us-west-1us-west-2ap-east-1ap-south-1ap-northeast-2ap-southeast-1ap-southeast-2ap-northeast-1ca-central-1cn-north-1+9passwordstringPassword for HTTP basic authentication. Applicable if `type` is `http`.
usernamestringUsername for HTTP basic authentication. Applicable if `type` is `http`.
access_keystringAWS Access Key ID for S3 authentication. Required if `type` is `s3`.
secret_keystringAWS Secret Access Key for S3 authentication. Required if `type` is `s3`.
private_keystringPrivate key (PEM format) for GCS service account. Required if `type` is `gcs`.
client_emailstringClient email for GCS service account. Required if `type` is `gcs`.
layout__typestringenumSpecifies the expected directory structure or layout for symbols.
nativesymstoresymstore_index2ssqpunifieddebuginfodslashsymbolslayout__casingstringenumSpecifies the filename casing convention for symbols.
lowercaseuppercasedefaultproject_id_or_slugstringObligatorioIdentifier (ID or slug) of the Sentry project.
organization_id_or_slugstringObligatorioIdentifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioConfiguration of the newly created symbol source.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Enable spike protection for an organizationSENTRY_POST_SPIKE_PROTECTION_FOR_ORGANIZATIONAcciónEnables or updates spike protection for specified projects (or all projects using `['$all']`) within an existing sentry organization, to which the projects must belong.
SENTRY_POST_SPIKE_PROTECTION_FOR_ORGANIZATIONAcciónEnables or updates spike protection for specified projects (or all projects using `['$all']`) within an existing sentry organization, to which the projects must belong.
Parámetros de entrada
projectsstring[]ObligatorioList of project slugs to enable Spike Protection for; use `['$all']` for all projects in the organization.
organization_id_or_slugstringObligatorioUnique ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioResult of the spike protection enablement, detailing the status for affected projects.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve alert rule detailsSENTRY_RETRIEVE_ALERT_RULE_DETAILSAcciónRetrieves detailed information for a specific metric alert rule within a sentry organization.
SENTRY_RETRIEVE_ALERT_RULE_DETAILSAcciónRetrieves detailed information for a specific metric alert rule within a sentry organization.
Parámetros de entrada
alert_rule_idintegerObligatorioThe numeric ID of the alert rule.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve commit files for releaseSENTRY_RETRIEVE_COMMIT_FILES_FOR_RELEASEAcciónRetrieves files changed in commits for a specified sentry release; the release must exist and have linked commits.
SENTRY_RETRIEVE_COMMIT_FILES_FOR_RELEASEAcciónRetrieves files changed in commits for a specified sentry release; the release must exist and have linked commits.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release. This can be a semantic version string (e.g., '1.0.0', 'my-project@2.3.4-beta'), a descriptive name (e.g., 'backend-deploy-2024-05-20'), or a commit SHA if used as the version string (e.g., 'abcdef123456').
organization_id_or_slugstringObligatorioThe slug (e.g., `my-org-slug`) or numerical ID (e.g., `1234567`) of the Sentry organization to which the release belongs.
Parámetros de salida
dataobjectObligatorioThe API response, detailing files changed in the release's commits (often a list of file objects).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve an organization's repository commitsSENTRY_RETRIEVE_COMMITS_FOR_ORGANIZATION_REPOAcciónRetrieves a list of commits for a given repository within a sentry organization.
SENTRY_RETRIEVE_COMMITS_FOR_ORGANIZATION_REPOAcciónRetrieves a list of commits for a given repository within a sentry organization.
Parámetros de entrada
repo_idstringObligatorioThe unique identifier of the repository.
organization_id_or_slugstringObligatorioThe unique identifier or short name (slug) of the organization.
Parámetros de salida
dataobject[]ObligatorioA list of commit objects. Each object typically includes fields like 'id', 'message', and 'dateCreated'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve dsym files for projectSENTRY_RETRIEVE_DSYM_FILES_FOR_PROJECTAcciónRetrieve a list of debug information files (dsym files) for a specified sentry project, used for symbolication to display human-readable stack traces.
SENTRY_RETRIEVE_DSYM_FILES_FOR_PROJECTAcciónRetrieve a list of debug information files (dsym files) for a specified sentry project, used for symbolication to display human-readable stack traces.
Parámetros de entrada
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the API's response, typically including a list of debug information files (dSYM files) with details such as ID, UUID, CPU name, object name, symbol type, size, and creation date.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve event id for organizationSENTRY_RETRIEVE_EVENT_ID_FOR_ORGANIZATIONAcciónResolves a sentry event id to its project and issue details within an accessible sentry organization.
SENTRY_RETRIEVE_EVENT_ID_FOR_ORGANIZATIONAcciónResolves a sentry event id to its project and issue details within an accessible sentry organization.
Parámetros de entrada
event_idstringObligatorioThe unique 32-character hexadecimal identifier of the Sentry event to be resolved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization where the event occurred. This specifies the scope for the event lookup.
Parámetros de salida
dataobjectObligatorioA dictionary containing the resolved event information. This includes the `projectSlug`, `groupID` (internal issue ID), and the `id` (internal event ID), along with other event attributes.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve files for releaseSENTRY_RETRIEVE_FILES_FOR_RELEASEAcciónRetrieves artifact files for a specific release version in a sentry organization; the organization and release must exist, and the response `data` field will contain the file information as a dictionary.
SENTRY_RETRIEVE_FILES_FOR_RELEASEAcciónRetrieves artifact files for a specific release version in a sentry organization; the organization and release must exist, and the response `data` field will contain the file information as a dictionary.
Parámetros de entrada
versionstringObligatorioThe specific version identifier of the release. This can be a commit hash (e.g., '4018a1c'), a semantic version (e.g., '1.0.0'), a custom release name (e.g., 'my-project@1.0.0'), or the literal string 'latest'.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable name (slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve issue events by idSENTRY_RETRIEVE_ISSUE_EVENTS_BY_IDAcciónRetrieves events for a specified sentry `issue id`, which must be an existing issue.
SENTRY_RETRIEVE_ISSUE_EVENTS_BY_IDAcciónRetrieves events for a specified sentry `issue id`, which must be an existing issue.
Parámetros de entrada
endstringThe end timestamp for filtering events, in ISO-8601 format (e.g., `2001-12-14T12:34:56.7890Z`). If provided, `start` must also be specified. This parameter is overridden by `statsPeriod` if both are used.
fullbooleanIf set to `true`, the full event body, including stacktraces, is included in the response for each event. If `false` or not provided (default), summarized event data is returned.
querystringAn optional Sentry search query string to further filter events. Uses Sentry's search syntax (e.g., 'level:error', 'user.ip:127.0.0.1', 'handled:no tag_name:tag_value').
startstringThe start timestamp for filtering events, in ISO-8601 format (e.g., `2001-12-14T12:34:56.7890Z`). If provided, `end` must also be specified. This parameter is overridden by `statsPeriod` if both are used.
samplebooleanIf set to `true`, events are returned in a pseudo-random yet deterministic order. An identical query will consistently produce the same event sequence. Useful for obtaining a representative sample from a large number of events.
issue_idintegerObligatorioThe unique numeric identifier of the Sentry issue for which to retrieve associated events.
environmentstring[]A list of environment names (e.g., 'production', 'staging') to filter events by. Only events from these specified environments will be returned.
statsPeriodstringA relative time period for the query (e.g., '24h', '7d', '2w'), calculated from the current time. This overrides `start` and `end` if specified. Format is a number followed by 'd' (days), 'h' (hours), 'm' (minutes), 's' (seconds), or 'w' (weeks).
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve issue hashes for organizationSENTRY_RETRIEVE_ISSUE_HASHES_FOR_ORGANIZATIONAcciónRetrieves a list of grouping checksums (hashes) generated by sentry for a specific issue within an organization, used for understanding event aggregation.
SENTRY_RETRIEVE_ISSUE_HASHES_FOR_ORGANIZATIONAcciónRetrieves a list of grouping checksums (hashes) generated by sentry for a specific issue within an organization, used for understanding event aggregation.
Parámetros de entrada
fullbooleanIf `True`, includes comprehensive details for each hash; if `False`, returns a minimal representation.
cursorstringPagination cursor to navigate through the list of issue hashes.
issue_idstringObligatorioIdentifier (ID) of the Sentry issue.
organization_id_or_slugstringObligatorioIdentifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDictionary containing the retrieved data about the issue's hashes, possibly including pagination metadata.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve issue tag detailsSENTRY_RETRIEVE_ISSUE_TAG_DETAILSAcciónRetrieves detailed information (e.g., top values, counts) for a specific tag key on an existing sentry issue; results are paginated (max 1000 values per page).
SENTRY_RETRIEVE_ISSUE_TAG_DETAILSAcciónRetrieves detailed information (e.g., top values, counts) for a specific tag key on an existing sentry issue; results are paginated (max 1000 values per page).
Parámetros de entrada
keystringObligatorioThe specific tag key (e.g., 'browser', 'os', 'environment', 'release', custom tags) for which to retrieve detailed values; case-sensitive.
issue_idintegerObligatorioThe unique numerical ID of the Sentry issue.
environmentstring[]Optional list of environment names to filter tag values; if omitted, all environments are considered.
Parámetros de salida
dataobjectObligatorioDetails for the specified tag, including `key`, `name`, `uniqueValues`, `totalValues`, and `topValues` (list of most frequent values with `value`, `count`, `firstSeen`, and `lastSeen` timestamps).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve monitor checkinsSENTRY_RETRIEVE_MONITOR_CHECKINSAcciónRetrieves the history of check-ins for a sentry monitor, providing insights into the health and performance of associated scheduled tasks.
SENTRY_RETRIEVE_MONITOR_CHECKINSAcciónRetrieves the history of check-ins for a sentry monitor, providing insights into the health and performance of associated scheduled tasks.
Parámetros de entrada
monitor_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry monitor. This specifies the monitor for which check-ins are to be retrieved.
project_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry project. This specifies the project to which the monitor belongs, within the given organization.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization. This specifies the organization to which the project and monitor belong.
Parámetros de salida
dataobjectObligatorioA dictionary containing the list of check-in objects from the Sentry API, where the list might be under a specific key. Each check-in provides details like 'id', 'status', 'duration', 'environment', and 'dateCreated'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve monitor checkins by orgSENTRY_RETRIEVE_MONITOR_CHECKINS_BY_ORGAcciónRetrieves check-ins (pings/heartbeats of a monitored cron job or task) for a specific monitor within a sentry organization.
SENTRY_RETRIEVE_MONITOR_CHECKINS_BY_ORGAcciónRetrieves check-ins (pings/heartbeats of a monitored cron job or task) for a specific monitor within a sentry organization.
Parámetros de entrada
monitor_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the monitor.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve notification action by org idSENTRY_RETRIEVE_NOTIFICATION_ACTION_BY_ORG_IDAcciónRetrieves details for a specific spike protection notification action, which defines alerts for triggered spike protection rules, within a sentry organization.
SENTRY_RETRIEVE_NOTIFICATION_ACTION_BY_ORG_IDAcciónRetrieves details for a specific spike protection notification action, which defines alerts for triggered spike protection rules, within a sentry organization.
Parámetros de entrada
action_idintegerObligatorioThe unique numerical identifier (ID) of the specific notification action to retrieve.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization dashboardSENTRY_RETRIEVE_ORGANIZATION_DASHBOARDAcciónFetches detailed information about a specific custom dashboard within a sentry organization.
SENTRY_RETRIEVE_ORGANIZATION_DASHBOARDAcciónFetches detailed information about a specific custom dashboard within a sentry organization.
Parámetros de entrada
dashboard_idintegerObligatorioThe unique numeric identifier (ID) of the custom dashboard to retrieve within the specified organization.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing detailed information of the retrieved custom dashboard, such as 'id', 'title', 'dateCreated', 'widgets', and 'createdBy'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization eventsSENTRY_RETRIEVE_ORGANIZATION_EVENTSAcciónRetrieves discover event data for a sentry organization; the `sort` field must be in the `field` list (not an equation), and `field` has a 20-item limit.
SENTRY_RETRIEVE_ORGANIZATION_EVENTSAcciónRetrieves discover event data for a sentry organization; the `sort` field must be in the `field` list (not an equation), and `field` has a 20-item limit.
Parámetros de entrada
endstringThe end timestamp for the query period, in ISO-8601 format (e.g., `2024-01-15T12:30:00Z`). This parameter is ignored if `statsPeriod` is provided.
sortstringThe field by which to sort the query results. Prepend with `-` for descending order (e.g., `-timestamp`).
fieldstring[]ObligatorioSpecifies the fields, functions, or equations to include in the query results. Each item in the list can be: - A built-in key field (e.g., `transaction`). Refer to Sentry documentation for event property fields. - A tag, using `tag[tagName]` format to avoid ambiguity (e.g., `tag[isEnterprise]`). - A function, in `function_name(parameters,...)` format (e.g., `count_if(transaction.duration,greater,300)`). When a function is included, Discover will group results by any specified tags or fields. Refer to Sentry query builder documentation for available functions. - An equation, prefixed with `equation|` (e.g., `equation|count_if(transaction.duration,greater,300) / count() * 100`). Refer to Sentry documentation on query equations.
querystringA Sentry search query string to filter events. Example: `(transaction:foo AND release:abc) OR (transaction:[bar,baz] AND release:def)`. Refer to Sentry documentation for detailed search syntax.
startstringThe start timestamp for the query period, in ISO-8601 format (e.g., `2024-01-01T10:00:00Z`). This parameter is ignored if `statsPeriod` is provided.
projectinteger[]A list of project IDs to filter events by. Use `[-1]` to include all accessible projects. For example: `[123, 456]` or `[-1]`.
per_pageintegerThe maximum number of event rows to return. Defaults to 100, which is also the maximum allowed value.
environmentstring[]A list of environment names to filter events by (e.g., `production`, `staging`).
statsPeriodstringThe relative time period for the query (e.g., `24h`, `7d`, `30m`). This overrides `start` and `end` if provided. Valid suffixes: `d` (days), `h` (hours), `m` (minutes), `s` (seconds), `w` (weeks).
organization_id_or_slugstringObligatorioThe ID or slug of the organization for which to retrieve events.
Parámetros de salida
dataobjectObligatorioA dictionary containing the queried event data, structured according to the requested `field` parameters.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization integrations listSENTRY_RETRIEVE_ORGANIZATION_INTEGRATIONS_LISTAcciónRetrieves a list of available integrations for an existing sentry organization.
SENTRY_RETRIEVE_ORGANIZATION_INTEGRATIONS_LISTAcciónRetrieves a list of available integrations for an existing sentry organization.
Parámetros de entrada
featuresstring[]Filters integrations by their supported features. Refer to Sentry's [Integrations Documentation](/product/integrations/) for an updated list of features. Examples include: `alert-rule`, `chat-unfurl`, `codeowners`, `commits`, `data-forwarding`, `deployment`, `enterprise-alert-rule`, `enterprise-incident-management`, `incident-management`, `issue-basic`, `issue-sync`, `mobile`, `serverless`, `session-replay`, `stacktrace-link`, `ticket-rules`.
providerKeystringFilters integrations by a specific provider key. Refer to Sentry's [Integrations Documentation](/product/integrations/) for an updated list of providers.
includeConfigbooleanIf `True`, fetches detailed third-party configurations for each integration; this may significantly increase response time.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing a list of integration objects available to the organization, matching query criteria. Refer to the Sentry API documentation for the exact structure.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization memberSENTRY_RETRIEVE_ORGANIZATION_MEMBERAcciónRetrieves details for a sentry organization member or pending invitee, including role, teams, and status, using their member id and the organization's id or slug.
SENTRY_RETRIEVE_ORGANIZATION_MEMBERAcciónRetrieves details for a sentry organization member or pending invitee, including role, teams, and status, using their member id and the organization's id or slug.
Parámetros de entrada
member_idstringObligatorioThe unique identifier (ID) of the organization member whose details are to be retrieved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the organization member's details, such as role, teams, status, and other attributes.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization monitorsSENTRY_RETRIEVE_ORGANIZATION_MONITORSAcciónRetrieves cron monitors for a sentry organization, including details of nested monitor environments.
SENTRY_RETRIEVE_ORGANIZATION_MONITORSAcciónRetrieves cron monitors for a sentry organization, including details of nested monitor environments.
Parámetros de entrada
ownerstringFilter by owner, using `user:<user_id>` or `team:<team_id>` format.
projectinteger[]List of project IDs to filter by; use `[-1]` for all accessible projects.
environmentstring[]List of environment names (e.g., 'production', 'staging') to filter by.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization projectsSENTRY_RETRIEVE_ORGANIZATION_PROJECTSAcciónRetrieves a list of sentry projects for a specified organization (which must be accessible), supporting pagination via cursor.
SENTRY_RETRIEVE_ORGANIZATION_PROJECTSAcciónRetrieves a list of sentry projects for a specified organization (which must be accessible), supporting pagination via cursor.
Parámetros de entrada
cursorstringPagination cursor pointing to the next or previous set of results. If omitted, the first page is returned. Typically obtained from a previous response's 'Link' header.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioRaw Sentry API response as a dictionary, containing the organization's project data and any relevant pagination information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization relay usageSENTRY_RETRIEVE_ORGANIZATION_RELAY_USAGEAcciónRetrieves relay usage information, primarily a list of trusted relays, for a specified sentry organization, which must have relay usage enabled.
SENTRY_RETRIEVE_ORGANIZATION_RELAY_USAGEAcciónRetrieves relay usage information, primarily a list of trusted relays, for a specified sentry organization, which must have relay usage enabled.
Parámetros de entrada
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization. This specifies which organization's relay usage data to retrieve.
Parámetros de salida
dataobjectObligatorioA dictionary containing details of the organization's Relay usage. This typically includes a list of trusted relays and potentially other usage statistics or configurations.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization release commitsSENTRY_RETRIEVE_ORGANIZATION_RELEASE_COMMITSAcciónRetrieves a list of commits for a given release version in an existing sentry organization, if the release exists.
SENTRY_RETRIEVE_ORGANIZATION_RELEASE_COMMITSAcciónRetrieves a list of commits for a given release version in an existing sentry organization, if the release exists.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release. This can be a version number, package name with version, or a commit hash.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the release belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the list of commits associated with the specified release. The structure of the commit data can vary.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization replaysSENTRY_RETRIEVE_ORGANIZATION_REPLAYSAcciónFetches session replays for a sentry organization; use `statsperiod` for relative time, or `start` and `end` (used together) for absolute time ranges.
SENTRY_RETRIEVE_ORGANIZATION_REPLAYSAcciónFetches session replays for a sentry organization; use `statsperiod` for relative time, or `start` and `end` (used together) for absolute time ranges.
Parámetros de entrada
endstringAbsolute inclusive end of the time series range (UTC ISO8601 or epoch seconds). Requires `start`. Conflicts with `statsPeriod`.
sortstringThe field to sort the replays by. Prefix with '-' for descending order (e.g., '-started_at'). Default is 'activity'.
fieldstring[]Additional fields to include in the response for each replay; invalid fields are ignored.
querystringStructured query string to filter replays (e.g., 'user.email:"j.doe@example.com" AND browser.name:"Chrome"'). Refer to Sentry documentation for syntax.
startstringAbsolute start of the time series range (UTC ISO8601 or epoch seconds). Requires `end`. Conflicts with `statsPeriod`.
cursorstringPagination cursor for fetching next/previous page. See Sentry API documentation for details.
projectinteger[]A list of project IDs to filter replays by. Use -1 for all projects.
per_pageintegerThe maximum number of replays to return per page. The default is 50, and the maximum is 100.
environmentstringThe environment name to filter replays by (e.g., 'production', 'staging').
statsPeriodstringThe relative time range for the query (e.g., `1d` for one day). Units: `m` (minutes), `h` (hours), `d` (days), `w` (weeks).
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the list of replays and related metadata.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization SCIM groupsSENTRY_RETRIEVE_ORGANIZATION_SCIM_GROUPSAcciónRetrieves a paginated list of scim groups (teams) for a sentry organization; the `members` field in the response for each group will contain at most 10,000 members.
SENTRY_RETRIEVE_ORGANIZATION_SCIM_GROUPSAcciónRetrieves a paginated list of scim groups (teams) for a sentry organization; the `members` field in the response for each group will contain at most 10,000 members.
Parámetros de entrada
countintegerThe maximum number of SCIM groups to return per page. The API enforces a maximum limit of 100.
filterstringA SCIM filter expression to narrow down the list of groups. Currently, only the `eq` (equals) operator is supported, e.g., `displayName eq "Engineering Team"`.
startIndexintegerThe 1-based index for pagination, indicating the starting point of the results to retrieve. Follows SCIM standards.
excludedAttributesstring[]A list of attribute names to exclude from the response for each group. Currently, the only supported value for an attribute to exclude is `members`.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization for which to retrieve SCIM groups.
Parámetros de salida
dataobjectObligatorioA dictionary containing the SCIM ListResponse. This includes a `Resources` key with a list of group objects, `totalResults`, `itemsPerPage`, `startIndex`, and other SCIM-standard fields.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve organization stats v2SENTRY_RETRIEVE_ORGANIZATION_STATS_V2AcciónRetrieves sentry organization event statistics; specify time range with `statsperiod` or both `start`/`end`; note that grouping by `project` returns a sum not a time-series, and `interval` (if used) must be 1h-1d and cleanly divide 24 hours.
SENTRY_RETRIEVE_ORGANIZATION_STATS_V2AcciónRetrieves sentry organization event statistics; specify time range with `statsperiod` or both `start`/`end`; note that grouping by `project` returns a sum not a time-series, and `interval` (if used) must be 1h-1d and cleanly divide 24 hours.
Parámetros de entrada
endstringInclusive end timestamp for the time series (ISO 8601 UTC or Unix epoch seconds). Use with `start`; alternative to `statsPeriod`.
fieldstringObligatorioenumMetric to retrieve. `sum(quantity)` for event counts (or bytes if category is `attachment`, milliseconds if `profile_duration`). `sum(times_seen)` for unique event occurrences (or sessions/attachments).
sum(quantity)sum(times_seen)startstringStart timestamp for the time series (ISO 8601 UTC or Unix epoch seconds). Use with `end`; alternative to `statsPeriod`.
reasonstringReason an event was filtered/dropped by Sentry (e.g., `filters:release_version`, `spike_protection`). Often used with outcomes like `filtered` or `rate_limited`.
groupBystring[]ObligatorioDimensions to group statistics by. Grouping by `project` returns a sum over the entire period, not a time series; for many projects, consider filtering by projects individually or querying them one by one to avoid missing rows.
outcomestringenumFilter by event outcome status (e.g., `accepted`, `filtered`, `rate_limited`), indicating how Sentry processed the event.
acceptedfilteredrate_limitedinvalidabuseclient_discardcardinality_limitedprojectarrayProject IDs to filter statistics by. Use `["-1"]` to include all accessible projects for the organization.
categorystringenumFilter by data category (e.g., `error`, `transaction`). `attachment` and `profile_duration` categories affect interpretation of `sum(quantity)` in `field` (bytes and milliseconds respectively).
errortransactionattachmentreplayprofileprofile_durationmonitorintervalstringTime series data resolution (e.g., `1h`, `1d`). Must be between `1h` and `1d` (inclusive) and cleanly divide 24 hours (e.g., `1h`, `2h`, `6h`, `12h`, `24h`).
statsPeriodstringRelative time range for statistics (e.g., `1d` for 1 day, `2w` for 2 weeks). Use `m` (minutes), `h` (hours), `d` (days), `w` (weeks). Provide this or both `start` and `end`.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioQueried statistical data. Structure depends on `groupBy` parameters and `interval`. Typically includes start/end timestamps, group keys, and series/totals for the requested `field`.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve org integration configSENTRY_RETRIEVE_ORG_INTEGRATION_CONFIGAcciónRetrieves configuration for all integrations, or a specific integration if `providerkey` is given, for an existing sentry organization.
SENTRY_RETRIEVE_ORG_INTEGRATION_CONFIGAcciónRetrieves configuration for all integrations, or a specific integration if `providerkey` is given, for an existing sentry organization.
Parámetros de entrada
providerKeystringKey of a specific integration provider (e.g., 'slack', 'github', 'jira') to filter by; if omitted, returns configurations for all integrations. Refer to Sentry's documentation for supported provider keys.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization for which to retrieve integration configurations.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project environmentsSENTRY_RETRIEVE_PROJECT_ENVIRONMENTSAcciónRetrieves a list of environments for an existing project within a sentry organization.
SENTRY_RETRIEVE_PROJECT_ENVIRONMENTSAcciónRetrieves a list of environments for an existing project within a sentry organization.
Parámetros de entrada
visibilitystringenumFilters environments by their visibility status: `all`, `hidden`, or `visible`.
allhiddenvisibleproject_id_or_slugstringObligatorioThe ID or slug of the project for which environments are to be retrieved.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioA list of environment objects associated with the project. Each object contains details such as 'id', 'name', and 'isHidden'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project event by idSENTRY_RETRIEVE_PROJECT_EVENT_BY_IDAcciónRetrieves detailed information for a specific sentry event using its id, organization identifier, and project identifier.
SENTRY_RETRIEVE_PROJECT_EVENT_BY_IDAcciónRetrieves detailed information for a specific sentry event using its id, organization identifier, and project identifier.
Parámetros de entrada
event_idstringObligatorioThe hexadecimal ID of the event to retrieve, as reported by the client.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project to which the event belongs.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the event belongs.
Parámetros de salida
dataobjectObligatorioA dictionary object containing the full details of the Sentry event.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project filter dataSENTRY_RETRIEVE_PROJECT_FILTER_DATAAcciónRetrieves a sentry project's current data filtering settings, used to ignore events from sources like localhost, web crawlers, or legacy browsers.
SENTRY_RETRIEVE_PROJECT_FILTER_DATAAcciónRetrieves a sentry project's current data filtering settings, used to ignore events from sources like localhost, web crawlers, or legacy browsers.
Parámetros de entrada
project_id_or_slugstringObligatorioUnique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioUnique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDictionary of project data filters. Keys are filter identifiers (e.g., 'legacyBrowsers', 'localhost', 'webCrawlers'), and values detail filter configuration, including an 'active' status (boolean or list of specific conditions/identifiers).
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project hooksSENTRY_RETRIEVE_PROJECT_HOOKSAcciónReturn a list of service hooks (webhooks) bound to a sentry project, used to send notifications to external services upon event occurrences.
SENTRY_RETRIEVE_PROJECT_HOOKSAcciónReturn a list of service hooks (webhooks) bound to a sentry project, used to send notifications to external services upon event occurrences.
Parámetros de entrada
cursorstringPagination cursor to retrieve the next or previous set of results (e.g., '100:0:1').
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project issues listSENTRY_RETRIEVE_PROJECT_ISSUES_LISTAcciónRetrieves a list of issues for a sentry project, defaulting to unresolved issues unless an empty `query` string is provided or specific `hashes` are used.
SENTRY_RETRIEVE_PROJECT_ISSUES_LISTAcciónRetrieves a list of issues for a sentry project, defaulting to unresolved issues unless an empty `query` string is provided or specific `hashes` are used.
Parámetros de entrada
querystringSentry structured search query to filter issues (e.g., "is:resolved", "error.type:TypeError"). Defaults to "is:unresolved"; `""` retrieves all issues regardless of status.
cursorstringPagination cursor from a previous response's `Link` header to fetch the next/previous set of issues.
hashesstringComma-separated group hashes to retrieve specific issues; incompatible with `query`. Max 100 hashes processed.
statsPeriodstringTime window for issue statistics (e.g., "24h", "14d"); `""` disables stats. API defaults to "24h" if unspecified.
shortIdLookupbooleanIf `True`, enables issue lookup by short IDs; may return issues from a different project. API default is typically `False`.
project_id_or_slugstringObligatorioUnique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioUnique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project key detailsSENTRY_RETRIEVE_PROJECT_KEY_DETAILSAcciónRetrieves details of a specific client key (dsn) for a sentry project, which is used by sentry sdks to send event data.
SENTRY_RETRIEVE_PROJECT_KEY_DETAILSAcciónRetrieves details of a specific client key (dsn) for a sentry project, which is used by sentry sdks to send event data.
Parámetros de entrada
key_idstringObligatorioID of the client key (DSN).
project_id_or_slugstringObligatorioID or slug of the project.
organization_id_or_slugstringObligatorioID or slug of the organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
List a project's client keysSENTRY_RETRIEVE_PROJECT_KEYS_BY_ORG_AND_PROJECTAcciónRetrieves a list of client keys (dsns), used by sentry sdks to send events, for a specified project within an organization.
SENTRY_RETRIEVE_PROJECT_KEYS_BY_ORG_AND_PROJECTAcciónRetrieves a list of client keys (dsns), used by sentry sdks to send events, for a specified project within an organization.
Parámetros de entrada
cursorstringPagination cursor to retrieve the next or previous set of results, typically formatted as '<cursor_identifier>:<row_offset>:<is_prev>'.
statusstringFilter client keys by status: 'active' or 'inactive'. If unspecified, returns all keys.
project_id_or_slugstringObligatorioThe ID or slug of the project.
organization_id_or_slugstringObligatorioThe ID or slug of the organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project members listSENTRY_RETRIEVE_PROJECT_MEMBERS_LISTAcciónRetrieves active organization members belonging to any team assigned to the specified sentry project.
SENTRY_RETRIEVE_PROJECT_MEMBERS_LISTAcciónRetrieves active organization members belonging to any team assigned to the specified sentry project.
Parámetros de entrada
project_id_or_slugstringObligatorioThe ID or human-readable slug of the Sentry project. This identifies the project for which members will be listed.
organization_id_or_slugstringObligatorioThe ID or human-readable slug of the Sentry organization. This identifies the organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioThe raw data returned by the Sentry API. This field is expected to contain the list of active organization members belonging to the project.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project release file detailsSENTRY_RETRIEVE_PROJECT_RELEASE_FILE_DETAILSAcciónRetrieves metadata (default) or raw content (if `download` is true) for a specific file within a sentry project's release version.
SENTRY_RETRIEVE_PROJECT_RELEASE_FILE_DETAILSAcciónRetrieves metadata (default) or raw content (if `download` is true) for a specific file within a sentry project's release version.
Parámetros de entrada
file_idstringObligatorioThe unique identifier of the file associated with the release (e.g., '~/app.js.map', 'dist/bundle.js').
versionstringObligatorioThe version identifier of the release (e.g., '1.0.0', 'my-app@2.3.1-beta').
downloadbooleanIf true, returns raw file content; otherwise, returns file metadata (JSON object).
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the file's metadata (JSON object) if 'download' parameter is false or not provided; may be irrelevant or empty if 'download' is true.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project rules by org and project idSENTRY_RETRIEVE_PROJECT_RULES_BY_ORG_AND_PROJECT_IDAcciónRetrieves a list of active issue alert rules associated with a specific project within an organization.
SENTRY_RETRIEVE_PROJECT_RULES_BY_ORG_AND_PROJECT_IDAcciónRetrieves a list of active issue alert rules associated with a specific project within an organization.
Parámetros de entrada
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the project for which to retrieve alert rules.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the organization to which the project belongs.
Parámetros de salida
dataobject[]ObligatorioA list of active issue alert rules. Each rule is represented as a dictionary containing its configuration details, such as ID, name, conditions, actions, and triggers.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project symbol sourcesSENTRY_RETRIEVE_PROJECT_SYMBOL_SOURCESAcciónRetrieves custom symbol sources for a sentry project, either listing all or fetching a specific one if its id is provided.
SENTRY_RETRIEVE_PROJECT_SYMBOL_SOURCESAcciónRetrieves custom symbol sources for a sentry project, either listing all or fetching a specific one if its id is provided.
Parámetros de entrada
idstringID of a specific symbol source to retrieve; if omitted, all custom symbol sources for the project are returned.
project_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or URL-friendly slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioSymbol source data; contains a specific source if its ID was provided in the request, or all custom symbol sources if no ID was provided.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project tag valuesSENTRY_RETRIEVE_PROJECT_TAG_VALUESAcciónRetrieves up to 1000 unique values for a specified tag key that has been recorded for events within a sentry project.
SENTRY_RETRIEVE_PROJECT_TAG_VALUESAcciónRetrieves up to 1000 unique values for a specified tag key that has been recorded for events within a sentry project.
Parámetros de entrada
keystringObligatorioThe specific tag key for which to retrieve the associated distinct values (e.g., 'browser', 'device', 'environment').
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioSentry API response, typically a list of tag values for the specified key, each detailing the value, name, count, and first/last seen timestamps.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve project teamsSENTRY_RETRIEVE_PROJECT_TEAMSAcciónRetrieves a list of teams with explicit access to a specific project within a sentry organization.
SENTRY_RETRIEVE_PROJECT_TEAMSAcciónRetrieves a list of teams with explicit access to a specific project within a sentry organization.
Parámetros de entrada
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioAPI response containing a list of team objects with access to the specified project, and potentially other metadata.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve release commitsSENTRY_RETRIEVE_RELEASE_COMMITSAcciónRetrieves a list of commits associated with a specific release version within a sentry project.
SENTRY_RETRIEVE_RELEASE_COMMITSAcciónRetrieves a list of commits associated with a specific release version within a sentry project.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release. This can be a commit SHA, a semantic version string, or any unique string identifying the release (e.g., 'my-app@1.0.0', 'cf7f4a337311e395e5099035f904289140b37025').
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project to which the release belongs.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the release belongs.
Parámetros de salida
dataobjectObligatorioA dictionary representing the API response for the release commits. This typically contains a list of commit objects (e.g., under a 'results' key if the response is paginated) detailing attributes like commit ID, author, message, and timestamp. It may also include pagination cursors.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve release deploymentsSENTRY_RETRIEVE_RELEASE_DEPLOYMENTSAcciónRetrieves a list of all deployment records for a specific release version in an organization, detailing each deployment's environment and timestamps.
SENTRY_RETRIEVE_RELEASE_DEPLOYMENTSAcciónRetrieves a list of all deployment records for a specific release version in an organization, detailing each deployment's environment and timestamps.
Parámetros de entrada
versionstringObligatorioThe version identifier of the release. This can be a semantic version string (e.g., '1.0.0'), a project-qualified version (e.g., 'my-project-name@1.0.0'), or a full commit SHA.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioThe Sentry API response, a dictionary which includes a list of deploy objects. Each object details a deployment with 'id', 'environment', 'name', 'url', 'dateStarted', and 'dateFinished'.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve release file by idSENTRY_RETRIEVE_RELEASE_FILE_BY_IDAcciónRetrieves a specific file's content or its metadata from a sentry release, using the `download` parameter to choose between raw content or json metadata.
SENTRY_RETRIEVE_RELEASE_FILE_BY_IDAcciónRetrieves a specific file's content or its metadata from a sentry release, using the `download` parameter to choose between raw content or json metadata.
Parámetros de entrada
file_idstringObligatorioThe unique identifier of the file to retrieve within the specified release. This can be a path or an opaque ID assigned by Sentry.
versionstringObligatorioThe version identifier of the release, such as '1.0.0', 'backend@2.3.1-beta', or a commit SHA.
downloadbooleanSet to `true` to receive raw file content. If `false` or omitted, results in a JSON object with file metadata being returned.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioContains a dictionary with file metadata if the `download` request parameter was `false` or omitted. If `download` was `true`, raw file content is returned directly, and this field may be bypassed as it's designed for structured data.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve replay recording segmentsSENTRY_RETRIEVE_REPLAY_RECORDING_SEGMENTSAcciónRetrieves a paginated list of recording segments for a specific sentry replay, used for reconstructing or analyzing the replay.
SENTRY_RETRIEVE_REPLAY_RECORDING_SEGMENTSAcciónRetrieves a paginated list of recording segments for a specific sentry replay, used for reconstructing or analyzing the replay.
Parámetros de entrada
cursorstringPagination cursor for the next or previous set of results.
per_pageintegerNumber of recording segments per page (default/max is 100).
replay_idstringObligatorioID of the replay.
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve saved discover queriesSENTRY_RETRIEVE_SAVED_DISCOVER_QUERIESAcciónRetrieves a list of saved discover queries for a sentry organization, optionally filtered and sorted.
SENTRY_RETRIEVE_SAVED_DISCOVER_QUERIESAcciónRetrieves a list of saved discover queries for a sentry organization, optionally filtered and sorted.
Parámetros de entrada
querystringA string to filter saved Discover queries by their name. For example, "High CPU Usage".
cursorstringAn opaque pagination cursor that points to the last object fetched and its sort order. Used to retrieve the next or previous set of results.
sortBystringField to sort results by. Defaults to sorting by query name. Options: `name`, `dateCreated`, `dateUpdated`, `mostPopular`, `recentlyViewed`, and `myqueries`.
per_pageintegerMaximum number of saved queries to return per page. Max: 100.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization for which to retrieve saved Discover queries.
Parámetros de salida
dataobjectObligatorioA dictionary containing the retrieved list of saved Discover queries and pagination information.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve saved discover query for organizationSENTRY_RETRIEVE_SAVED_DISCOVER_QUERY_FOR_ORGANIZATIONAcciónRetrieves a specific saved discover query (a predefined set of filters and conditions for exploring event data) for a sentry organization.
SENTRY_RETRIEVE_SAVED_DISCOVER_QUERY_FOR_ORGANIZATIONAcciónRetrieves a specific saved discover query (a predefined set of filters and conditions for exploring event data) for a sentry organization.
Parámetros de entrada
query_idintegerObligatorioThe ID of the saved Discover query.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDictionary with attributes and configuration of the saved Discover query; its structure varies.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve short id for organizationSENTRY_RETRIEVE_SHORT_ID_FOR_ORGANIZATIONAcciónResolves an existing sentry short id to its issue details within a valid sentry organization.
SENTRY_RETRIEVE_SHORT_ID_FOR_ORGANIZATIONAcciónResolves an existing sentry short id to its issue details within a valid sentry organization.
Parámetros de entrada
short_idstringObligatorioThe Sentry short ID to resolve (e.g., 'PROJECT-1A', 'APP-XYZ').
organization_id_or_slugstringObligatorioID or slug of the Sentry organization where the short ID will be looked up.
Parámetros de salida
dataobjectObligatorioResolved information for the short ID, typically including project slug, internal issue ID, and group ID.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve source map debug eventSENTRY_RETRIEVE_SOURCE_MAP_DEBUG_EVENTAcciónRetrieves detailed debug information for diagnosing source map processing issues for a specific sentry event, stack trace frame, and exception index.
SENTRY_RETRIEVE_SOURCE_MAP_DEBUG_EVENTAcciónRetrieves detailed debug information for diagnosing source map processing issues for a specific sentry event, stack trace frame, and exception index.
Parámetros de entrada
event_idstringObligatorioThe unique identifier (ID) of the event for which source map debug information is being retrieved.
frame_idxintegerObligatorioNumerical index of the stack trace frame for source map resolution.
exception_idxintegerObligatorioNumerical index of the exception in the event's exception array for source map resolution.
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project to which the resource belongs.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the resource belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing detailed source map debug information for the specified event, frame, and exception. The structure of this data can vary based on the nature of the source map issues found.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve team infoSENTRY_RETRIEVE_TEAM_INFO_VIA_ORGANIZATION_ID_OR_SLUGAcciónRetrieves detailed information for an existing sentry team within its organization, optionally expanding related data (e.g., projects) or collapsing sections (e.g., organization details).
SENTRY_RETRIEVE_TEAM_INFO_VIA_ORGANIZATION_ID_OR_SLUGAcciónRetrieves detailed information for an existing sentry team within its organization, optionally expanding related data (e.g., projects) or collapsing sections (e.g., organization details).
Parámetros de entrada
expandstringA comma-separated string listing extra data sections to include in the response. Supported values are `projects` (to include details of projects associated with the team) and `externalTeams` (to include mappings to external teams). For example, 'projects,externalTeams'.
collapsestringA comma-separated string listing data sections to exclude from the response. Supported value is `organization` (to exclude detailed organization information from the team details).
team_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry team whose details are to be retrieved.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization to which the team belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the detailed information of the retrieved team, including its attributes and any expanded or collapsed data as per the request.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve team projectsSENTRY_RETRIEVE_TEAM_PROJECTSAcciónRetrieves a list of sentry projects for a specific team within an organization, supporting pagination via a cursor.
SENTRY_RETRIEVE_TEAM_PROJECTSAcciónRetrieves a list of sentry projects for a specific team within an organization, supporting pagination via a cursor.
Parámetros de entrada
cursorstringPagination cursor for navigating through project lists; if omitted, the first page is returned.
team_id_or_slugstringObligatorioThe ID or slug of the Sentry team.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioThe raw API response. This is expected to be a list of Sentry project objects, each detailing a project associated with the specified team. The structure of the actual data returned by the Sentry API for this endpoint is typically a JSON array of project details.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve user email informationSENTRY_RETRIEVE_USER_EMAIL_INFORMATIONAcciónRetrieves a list of email addresses for an existing sentry user, identified by their `user id`.
SENTRY_RETRIEVE_USER_EMAIL_INFORMATIONAcciónRetrieves a list of email addresses for an existing sentry user, identified by their `user id`.
Parámetros de entrada
user_idstringObligatorioThe unique identifier of the Sentry user for whom to retrieve email information.
Parámetros de salida
dataobjectObligatorioThe user's email information from Sentry. Typically contains a list of email objects, where each object details an email address, its `is_primary` status, and `is_verified` status.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve user feedback for projectSENTRY_RETRIEVE_USER_FEEDBACK_FOR_PROJECTAcciónRetrieves user feedback for a project from sentry's older 'user reports' system, excluding feedback from the modern 'user feedback widget'.
SENTRY_RETRIEVE_USER_FEEDBACK_FOR_PROJECTAcciónRetrieves user feedback for a project from sentry's older 'user reports' system, excluding feedback from the modern 'user feedback widget'.
Parámetros de entrada
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project. Slugs are typically lowercase and use hyphens for spaces.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization. Slugs are typically lowercase and use hyphens for spaces.
Parámetros de salida
dataobjectObligatorioA dictionary containing the user feedback data. This feedback originates from the older 'User Reports' system, not the newer User Feedback Widget. The structure typically includes a list of feedback entries and may contain pagination details.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Retrieve user via SCIM APISENTRY_RETRIEVE_USER_VIA_SCIM_APIAcciónRetrieves an individual sentry organization member's details accessible via scim v2 using their member id, noting that `firstname` and `lastname` in the response will be 'n/a'.
SENTRY_RETRIEVE_USER_VIA_SCIM_APIAcciónRetrieves an individual sentry organization member's details accessible via scim v2 using their member id, noting that `firstname` and `lastname` in the response will be 'n/a'.
Parámetros de entrada
member_idstringObligatorioThe unique identifier (ID) of the organization member to be retrieved via SCIM.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization. This specifies the organization to which the member belongs.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Save organization discover querySENTRY_SAVE_ORGANIZATION_DISCOVER_QUERYAcciónSaves a new discover query with a unique name for a sentry organization, allowing reuse of search criteria for analyzing event data (errors, transactions) across specified projects and environments.
SENTRY_SAVE_ORGANIZATION_DISCOVER_QUERYAcciónSaves a new discover query with a unique name for a sentry organization, allowing reuse of search criteria for analyzing event data (errors, transactions) across specified projects and environments.
Parámetros de entrada
endstringdate-timeEnd date/time for the query's time range (ISO 8601). Takes precedence over `range`.
namestringObligatorioUnique name for the saved query.
querystringSearch query string using Sentry's syntax (e.g., `level:error transaction:/api/v1/*`).
rangestringRelative time range (e.g., '24h', '7d') if `start` and `end` are not provided.
startstringdate-timeStart date/time for the query's time range (ISO 8601). Takes precedence over `range`.
yAxisstring[]List of aggregate functions for the y-axis of the chart visualization.
fieldsstring[]List of fields (e.g., `transaction`, `tag[tagName]`), functions (e.g., `count_if(...)`), or equations (prefixed with `equation|`) to include (max 20). See Sentry documentation for details.
displaystringChart visualization type. Allowed: `default`, `previous`, `top5`, `daily`, `dailytop5`, `bar`.
orderbystringField or function from `fields` list to order results by (prefix with `-` for descending). Cannot be an equation.
intervalstringTime series resolution for the chart (e.g., '1h', '30m', 'auto').
projectsinteger[]List of project IDs to filter by; empty list implies all projects in the organization.
topEventsintegerNumber of 'top events' timeseries for `top5` or `dailytop5` display types.
environmentstring[]List of environment names to filter by.
queryDatasetstringenumDataset to query: `discover` (event properties/tags), `error-events` (error data), or `transaction-like` (transaction/performance data).
discovererror-eventstransaction-likeorganization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioComplete representation of the saved query, including its parameters and metadata.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Fetch Tag Values for IssueSENTRY_SENTRY_FETCH_TAG_VALUES_FOR_ISSUEAcciónRetrieves a list of distinct values for a specified tag key associated with an existing sentry issue, useful for understanding tag manifestations like browser versions or affected users.
SENTRY_SENTRY_FETCH_TAG_VALUES_FOR_ISSUEAcciónRetrieves a list of distinct values for a specified tag key associated with an existing sentry issue, useful for understanding tag manifestations like browser versions or affected users.
Parámetros de entrada
keystringObligatorioThe specific tag key (e.g., 'browser', 'user_id', 'environment') for which to retrieve distinct values associated with the issue.
sortstringenumSort order for tag values; valid options are 'age', 'count', 'date', 'id'. Prefix with '-' for descending (e.g., '-count'); defaults to '-id'.
agecountdateidissue_idintegerObligatorioThe unique numerical identifier of the Sentry issue for which tag values are to be fetched.
environmentstring[]A list of environment names to filter the tag values; if provided, only values from these specified environments will be returned.
Parámetros de salida
dataobjectObligatorioA dictionary containing the data related to tag values for the issue, typically including a list of objects representing distinct tag values with properties like value, count, and timestamps.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Submit notification action API dataSENTRY_SUBMIT_NOTIFICATION_ACTION_API_DATAAcciónCreates a sentry notification action for 'spike-protection' triggers, requiring `integration id` if `service type` is 'slack', 'pagerduty', or 'opsgenie', and `target identifier`/`target display` if `service type` is 'slack' or 'opsgenie'.
SENTRY_SUBMIT_NOTIFICATION_ACTION_API_DATAAcciónCreates a sentry notification action for 'spike-protection' triggers, requiring `integration id` if `service type` is 'slack', 'pagerduty', or 'opsgenie', and `target identifier`/`target display` if `service type` is 'slack' or 'opsgenie'.
Parámetros de entrada
projectsstring[]Optional list of project slugs to scope this action; if provided, the action applies only to these projects.
service_typestringObligatorioThe service for sending the notification (e.g., 'email', 'slack').
trigger_typestringObligatorioSpecifies the type of event that triggers the notification; currently, only 'spike-protection' is supported.
integration_idintegerID of the pre-configured integration. Required if `service_type` is 'slack', 'pagerduty', or 'opsgenie'.
target_displaystringHuman-readable name for the notification target (e.g., Slack channel name). Required if `service_type` is 'slack' or 'opsgenie'.
target_identifierstringSpecific identifier of the notification target (e.g., Slack channel ID). Required if `service_type` is 'slack' or 'opsgenie'.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing details of the created Notification Action.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Submit project user feedbackSENTRY_SUBMIT_PROJECT_USER_FEEDBACKAcciónDeprecated: submits user feedback for a sentry project event (use if newer sentry feedback tools are unavailable); submit within 30 mins of event, overwritable within 5 mins.
SENTRY_SUBMIT_PROJECT_USER_FEEDBACKAcciónDeprecated: submits user feedback for a sentry project event (use if newer sentry feedback tools are unavailable); submit within 30 mins of event, overwritable within 5 mins.
Parámetros de entrada
namestringObligatorioThe name of the user submitting the feedback.
emailstringObligatorioThe email address of the user submitting the feedback.
commentsstringObligatorioThe feedback comments provided by the user.
event_idstringObligatorioThe ID of the Sentry event to which this feedback is associated. This can be retrieved from the [beforeSend callback](https://docs.sentry.io/platforms/javascript/configuration/filtering/#using-beforesend).
project_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug for the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the API response for the feedback submission, typically confirming success or providing details of the created feedback record.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Switch team role for memberSENTRY_SWITCH_TEAM_ROLE_FOR_MEMBERAcciónChanges a member's role within a sentry team, ensuring the member is already part of the team and that any organization-level role restrictions are respected.
SENTRY_SWITCH_TEAM_ROLE_FOR_MEMBERAcciónChanges a member's role within a sentry team, ensuring the member is already part of the team and that any organization-level role restrictions are respected.
Parámetros de entrada
teamRolestringenumDetails for available team roles: `contributor` allows viewing/acting on events and most team project data; `admin` grants team administration privileges like managing projects and memberships.
contributoradminmember_idstringObligatorioIdentifier for the organization member.
team_id_or_slugstringObligatorioIdentifier (ID or slug) for the Sentry team.
organization_id_or_slugstringObligatorioIdentifier (ID or slug) for the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Toggle project filter statusSENTRY_TOGGLE_PROJECT_FILTER_STATUSAcciónUpdates the status or configuration of a specific inbound data filter for a sentry project; use `active` for most filters, or `subfilters` if `filter id` is `legacy-browser`.
SENTRY_TOGGLE_PROJECT_FILTER_STATUSAcciónUpdates the status or configuration of a specific inbound data filter for a sentry project; use `active` for most filters, or `subfilters` if `filter id` is `legacy-browser`.
Parámetros de entrada
activebooleanEnable (`true`) or disable (`false`) the filter. Required if `filter_id` is not `legacy-browser`; not used if `filter_id` is `legacy-browser` (use `subfilters` then).
filter_idstringObligatorioIdentifier of the inbound data filter to update. Each `filter_id` has a specific behavior: - `browser-extensions`: Filters errors known to be caused by browser extensions. - `localhost`: Filters events originating from localhost (IPv4: `127.0.0.1`, IPv6: `::1`). - `filtered-transaction`: Filters transactions for health check and ping endpoints. - `web-crawlers`: Filters known web crawlers, as they may cause errors unlikely for normal users. - `legacy-browser`: Filters known errors from legacy browsers (often providing less accurate context). Use `subfilters` to configure specific browsers for this filter.
subfiltersstring[]List of legacy browser subfilters to enable (unlisted ones will be disabled). Required and only used if `filter_id` is `legacy-browser`. Available options: - `ie`: Internet Explorer (v11 and older) - `edge`: Edge (v18 and older, non-Chromium) - `safari`: Safari (v11 and older) - `firefox`: Firefox (v66 and older) - `chrome`: Chrome (v62 and older) - `opera`: Opera (v50 and older) - `android`: Android Browser (v3 and older) - `opera_mini`: Opera Mini (v34 and older) Deprecated options (still functional but may be removed in the future): - `ie_pre_9`: Internet Explorer (v8 and older) - `ie9`: Internet Explorer v9 - `ie10`: Internet Explorer v10 - `ie11`: Internet Explorer v11 - `safari_pre_6`: Safari (v5 and older) - `opera_pre_15`: Opera (v14 and older) - `opera_mini_pre_8`: Opera Mini (v8 and older) - `android_pre_4`: Android Browser (v3 and older) - `edge_pre_79`: Edge (v18 and older, non-Chromium based)
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioContains the updated filter configuration. Structure varies based on the `filter_id` that was updated.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update environment visibilitySENTRY_UPDATE_ENVIRONMENT_VISIBILITYAcciónUpdates the visibility of a specific environment within a sentry project.
SENTRY_UPDATE_ENVIRONMENT_VISIBILITYAcciónUpdates the visibility of a specific environment within a sentry project.
Parámetros de entrada
isHiddenbooleanObligatorioIndicates if the environment should be hidden (`true`) or visible (`false`).
environmentstringObligatorioThe name of the environment to update.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update external team integrationSENTRY_UPDATE_EXTERNAL_TEAM_INTEGRATIONAcciónUpdates an existing external team integration's display name, provider, sentry integration id, or external id; the `integration id` must match a valid, configured sentry integration for the organization and the specified `provider`.
SENTRY_UPDATE_EXTERNAL_TEAM_INTEGRATIONAcciónUpdates an existing external team integration's display name, provider, sentry integration id, or external id; the `integration id` must match a valid, configured sentry integration for the organization and the specified `provider`.
Parámetros de entrada
providerstringObligatorioenumProvider of the external actor; must match the provider of the integration.
githubgithub_enterpriseslackgitlabmsteamscustom_scmexternal_idstringOptional: External ID for the team within the provider's system, distinct from its name.
external_namestringObligatorioNew display name for the team in the external provider.
integration_idintegerObligatorioUnique ID of the Sentry integration instance connecting Sentry to the external provider.
team_id_or_slugstringObligatorioID or slug of the Sentry team.
external_team_idintegerObligatorioUnique ID of the external team object to update.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioFull representation of the updated external team integration.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update external user for organizationSENTRY_UPDATE_EXTERNAL_USER_FOR_ORGANIZATIONAcciónUpdates attributes of an existing external user linkage (identified by `external user id`) within a sentry organization (specified by `organization id or slug`).
SENTRY_UPDATE_EXTERNAL_USER_FOR_ORGANIZATIONAcciónUpdates attributes of an existing external user linkage (identified by `external user id`) within a sentry organization (specified by `organization id or slug`).
Parámetros de entrada
idintegerObligatorioThe unique Sentry identifier of the external user record being updated. This typically matches the `external_user_id` path parameter.
user_idintegerObligatorioThe Sentry user ID to be linked or that is currently linked with this external user.
providerstringObligatorioenumThe external identity provider platform. Supported values: `github`, `github_enterprise`, `slack`, `gitlab`, `msteams`, `custom_scm`.
githubgithub_enterpriseslackgitlabmsteamscustom_scmexternal_idstringThe user's unique identifier on the external provider's platform (e.g., 'U123ABC' for Slack, 'github_user_123' for GitHub). This is optional.
external_namestringObligatorioThe user's display name or username on the external provider platform (e.g., 'john.doe' or 'John Doe').
integration_idintegerObligatorioThe Sentry ID of the integration instance (e.g., a specific Slack workspace or GitHub organization integration) through which this external user is known.
external_user_idintegerObligatorioThe unique identifier of the external user record within Sentry to update.
organization_id_or_slugstringObligatorioThe unique identifier (numeric ID or string slug) of the Sentry organization to which the external user is linked.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update issue attributes in organizationSENTRY_UPDATE_ISSUE_ATTRIBUTES_IN_ORGANIZATIONAcciónUpdates specified attributes of an existing sentry issue within a sentry organization, leaving other attributes unchanged.
SENTRY_UPDATE_ISSUE_ATTRIBUTES_IN_ORGANIZATIONAcciónUpdates specified attributes of an existing sentry issue within a sentry organization, leaving other attributes unchanged.
Parámetros de entrada
statusstringThe new status to assign to the issue. Valid values: "resolved", "resolvedInNextRelease", "unresolved", "ignored".
hasSeenbooleanUpdates if the user has seen the issue (true for seen, false for unseen).
isPublicbooleanSets the issue's visibility (true for public, false for private).
issue_idstringObligatorioThe unique identifier of the issue to be updated.
assignedTostringActor ID (e.g., 'user:1', 'team:2'), username, or email for assignment. Omit, or use an empty string or 'null' equivalent, to unassign.
isBookmarkedbooleanUpdates the user's bookmark for the issue (true to bookmark, false to remove).
isSubscribedbooleanUpdates the user's notification subscription for the issue (true to subscribe, false to unsubscribe).
organization_id_or_slugstringObligatorioThe unique identifier (ID) or slug of the Sentry organization.
statusDetails__inCommitstringThe commit hash associated with the fix for this issue.
statusDetails__inReleasestringThe Sentry release version in which the issue is considered resolved.
statusDetails__inNextReleasebooleanSpecifies if the issue is resolved in the next Sentry release.
Parámetros de salida
dataobjectObligatorioDictionary containing the updated issue attributes.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update organization alert rulesSENTRY_UPDATE_ORGANIZATION_ALERT_RULESAcciónReplaces an existing sentry metric alert rule's configuration; fields not provided in the request are removed or reset.
SENTRY_UPDATE_ORGANIZATION_ALERT_RULESAcciónReplaces an existing sentry metric alert rule's configuration; fields not provided in the request are removed or reset.
Parámetros de entrada
namestringObligatorioDescriptive name for the alert rule.
ownerstringSentry actor ID (e.g., `team:123`, `user:456`) owning the rule, determining management permissions.
querystringObligatorioSentry search query to filter events/metrics. An empty string (`''`) applies no filter.
datasetstringDataset to query (`events`, `transactions`, `metrics`, `sessions`, `generic-metrics`). Affects available fields/aggregations; see Sentry's 'Metric Alert Rule Types' docs.
projectsstring[]ObligatorioList of project slugs to scope the alert rule.
triggersarrayObligatorioList of trigger configurations defining alert conditions (critical/warning labels, thresholds) and notification actions (e.g., email, Slack). `critical` label is mandatory. See Sentry API docs for full action schema.
aggregatestringObligatorioAggregate function for the metric (e.g., `count`, `p95`). See Sentry's 'Metric Alert Rule Types' documentation for configurations based on dataset and query type.
queryTypeintegerQuery type, often related to `dataset`: `0` (error events), `1` (transaction events), `2` (none). See Sentry's 'Metric Alert Rule Types' for valid combinations.
eventTypesstring[]Specific event types for this alert (e.g., `default`, `error`, `transaction`).
timeWindowintegerObligatorioTime window in minutes for `aggregate` computation (1, 5, 10, 15, 30, 60, 120, 240, 1440).
environmentstringEnvironment to filter events/metrics (e.g., 'production'). If omitted, applies to all environments.
monitorTypeintegerMonitoring state of the rule (e.g., continuously active or conditionally activated via `activationCondition`).
alert_rule_idintegerObligatorioUnique numeric ID of the metric alert rule to update.
thresholdTypeintegerObligatorioComparison operator for thresholds: `0` for 'Above' (metric > threshold) or 'Higher than' (percentage change), `1` for 'Below' (metric < threshold) or 'Lower than'.
comparisonDeltaintegerComparison period (minutes) for percentage change thresholds (e.g., 'X% higher than Y minutes ago'). Required if `thresholdType` implies percentage change; not for 'Crash Free...' alerts.
resolveThresholdintegerMetric value for alert resolution. If unspecified, derived from lowest severity trigger. If `thresholdType` is `0` ('Above'), `resolveThreshold` must be > critical threshold; if `1` ('Below'), it must be < critical threshold.
activationConditionintegerOptional condition for rule activation, used with certain `monitorType` values.
organization_id_or_slugstringObligatorioUnique identifier (ID or slug) of the Sentry organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update organization dashboardSENTRY_UPDATE_ORGANIZATION_DASHBOARDAcciónUpdates an existing custom dashboard, allowing modifications to its title, widgets, and data filters; providing `widgets`, `projects`, `environment`, `period`, `start`, `end`, or `filters` will overwrite existing settings for those fields.
SENTRY_UPDATE_ORGANIZATION_DASHBOARDAcciónUpdates an existing custom dashboard, allowing modifications to its title, widgets, and data filters; providing `widgets`, `projects`, `environment`, `period`, `start`, `end`, or `filters` will overwrite existing settings for those fields.
Parámetros de entrada
idstringUnique identifier for the dashboard; should match existing ID if updating.
endstringdate-timeThe absolute end time for the dashboard's time range, in ISO 8601 format (e.g., '2023-01-02T00:00:00Z'). If provided along with 'start', `period` is ignored. Replaces the existing end time.
utcbooleanA boolean indicating whether the dashboard's time range should be displayed in UTC. `True` for UTC, `False` for the user's local time.
startstringdate-timeThe absolute start time for the dashboard's time range, in ISO 8601 format (e.g., '2023-01-01T00:00:00Z'). If provided along with 'end', `period` is ignored. Replaces the existing start time.
titlestringThe new title for the dashboard.
periodstringThe relative time range period for the dashboard (e.g., '24h', '7d', '30d'). Replaces the existing period. If 'start' and 'end' are set, this is ignored.
filtersobjectA dictionary of additional filters to apply to the dashboard data, replacing existing filters. Keys are filter names, values are filter values.
widgetsobject[]A list of widget configurations to be updated or set for this dashboard. This will replace all existing widgets.
projectsinteger[]A list of project IDs to filter the dashboard data by. Replaces the existing project filter.
environmentstring[]A list of environment names to filter the dashboard data by. Replaces the existing environment filter.
dashboard_idintegerObligatorioThe ID of the dashboard to be updated.
organization_id_or_slugstringObligatorioThe ID or slug of the organization the resource belongs to.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the updated dashboard.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update organization member roleSENTRY_UPDATE_ORGANIZATION_MEMBER_ROLEAcciónUpdates a sentry organization member's organization-level role (`orgrole`) and/or their team roles (`teamroles`), ensuring the initiator has permissions equivalent to both the member's current and intended new `orgrole` if `orgrole` is being modified.
SENTRY_UPDATE_ORGANIZATION_MEMBER_ROLEAcciónUpdates a sentry organization member's organization-level role (`orgrole`) and/or their team roles (`teamroles`), ensuring the initiator has permissions equivalent to both the member's current and intended new `orgrole` if `orgrole` is being modified.
Parámetros de entrada
orgRolestringenumSets the member's new organization-level role (e.g., 'billing' for payments, 'member' for event access, 'manager' for project/team admin, 'owner' for full control). The 'admin' role is not assignable on Business/Enterprise plans; use `teamRoles` for granular admin tasks.
billingmembermanagerowneradminmember_idstringObligatorioThe ID of the member whose roles are to be updated.
teamRolesobject[]List of team role assignments (each object specifying `teamSlug` and `role`). This list completely replaces existing team roles. An empty list (default) removes the member from all teams. Team roles: `contributor` (views/acts on issues), `admin` (full team/project management).
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the member belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the updated details of the organization member, reflecting the new role assignments.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project detailsSENTRY_UPDATE_PROJECT_DETAILSAcciónUpdates a sentry project's settings (e.g., name, slug, platform, bookmark status); `isbookmarked` can be updated with `project:read` permission, other fields typically require `project:write` or `project:admin` permissions.
SENTRY_UPDATE_PROJECT_DETAILSAcciónUpdates a sentry project's settings (e.g., name, slug, platform, bookmark status); `isbookmarked` can be updated with `project:read` permission, other fields typically require `project:write` or `project:admin` permissions.
Parámetros de entrada
namestringThe new name for the project.
slugstringThe new unique identifier (slug) for the project, used in URLs and the Sentry interface.
platformstringThe new platform for the project (e.g., `python`, `javascript`, `java`). This helps Sentry categorize and process errors.
resolveAgeintegerThe duration in hours after which an issue is automatically resolved if it hasn't been seen. Set to `0` to disable auto-resolution.
isBookmarkedbooleanToggles whether the project is starred (bookmarked) in the Sentry UI.
highlightTagsstring[]A list of tag keys (e.g., 'release', 'environment') to highlight on this project's issues in Sentry's UI. For example: `["release", "environment", "server_name"]`.
subjectPrefixstringCustom prefix for the subject line of notification emails sent from this project.
subjectTemplatestringThe template for the email subject (excluding the prefix) for individual issue alerts. Available variables: `$title`, `$shortID`, `$projectID`, `$orgID`, and `${tag:key}` (e.g., `${tag:environment}`, `${tag:release}`).
highlightContextobjectA JSON object mapping context types (e.g., 'user', 'device') to a list of their keys to be highlighted in Sentry's UI for issues within this project. For example: `{"user": ["id", "email"], "device": ["model"]}`.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project to be updated.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the updated project details as key-value pairs.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project issue status and detailsSENTRY_UPDATE_PROJECT_ISSUE_STATUS_AND_DETAILSAcciónBulk update attributes of issues in a sentry project, targeting issues by a list of ids or by a query status (which implies updating all matching issues if ids are omitted).
SENTRY_UPDATE_PROJECT_ISSUE_STATUS_AND_DETAILSAcciónBulk update attributes of issues in a sentry project, targeting issues by a list of ids or by a query status (which implies updating all matching issues if ids are omitted).
Parámetros de entrada
idintegerIssue ID to update. This query parameter can be repeated for multiple IDs. Optional; if omitted and the 'status' query parameter (filter) is used, updates all issues matching that status.
mergebooleanSet to true to merge issues, false to unmerge. If merging, ensure the target issue ID is correctly specified.
statusstringThe new status to apply to the selected issues (request body parameter, also named "status"). Valid values are `"resolved"`, `"resolvedInNextRelease"`, `"unresolved"`, and `"ignored"`.
hasSeenbooleanIf called with user context: true to mark issue as seen by the user, false as unseen.
isPublicbooleanSet to true for public, false for private.
assignedTostringActor ID (e.g., `user:123` or `team:456`) or username for assignment. Use an empty string or null to unassign.
isBookmarkedbooleanIf called with user context: true to bookmark issue for the user, false to remove bookmark.
ignoreDurationintegerMinutes to ignore this issue (alternative to `statusDetails.ignoreDuration`).
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
statusDetails__inCommitstringCommit ID in which the issue is resolved.
statusDetails__inReleasestringVersion/release in which the issue is resolved.
statusDetails__ignoreCountintegerNumber of times to ignore the issue before it resurfaces.
statusDetails__ignoreWindowintegerTime window (in minutes) for `ignoreCount`.
statusDetails__inNextReleasebooleanIndicates if the issue is resolved in the next release.
statusDetails__ignoreDurationintegerDuration (in minutes) to ignore the issue.
statusDetails__ignoreUserCountintegerNumber of unique users affected before a previously ignored issue resurfaces.
statusDetails__ignoreUserWindowintegerTime window (in minutes) for `ignoreUserCount`.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project key configurationSENTRY_UPDATE_PROJECT_KEY_CONFIGURATIONAcciónUpdates configuration settings (e.g., name, status, rate limits, sdk options) for an existing sentry client key (dsn), identified by `key id`, within a specified `project id or slug` and `organization id or slug`.
SENTRY_UPDATE_PROJECT_KEY_CONFIGURATIONAcciónUpdates configuration settings (e.g., name, status, rate limits, sdk options) for an existing sentry client key (dsn), identified by `key id`, within a specified `project id or slug` and `organization id or slug`.
Parámetros de entrada
namestringNew human-readable name for the client key. Name will not be changed if omitted.
key_idstringObligatorioThe ID of the client key (DSN public key) to be updated.
isActivebooleanSpecifies if the client key should be active (`true` to activate, `false` to deactivate). Status remains unchanged if omitted.
rateLimit__countintegerMaximum number of events the key can accept within `rateLimit_window`. Uses existing settings or project defaults if omitted.
browserSdkVersionstringenumSentry JavaScript SDK version for the loader ('latest' or '7.x'). Current setting remains unchanged if omitted.
latest7.xrateLimit__windowintegerTime window in seconds for `rateLimit_count` (e.g., 3600 for 1 hour). Uses existing settings or project defaults if omitted.
project_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project whose key is being updated.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the project belongs.
dynamicSdkLoaderOptions__hasDebugbooleanEnable (`true`) or disable (`false`) Debugging features for the dynamic SDK loader. Current setting remains unchanged if omitted.
dynamicSdkLoaderOptions__hasReplaybooleanEnable (`true`) or disable (`false`) Session Replay for the dynamic SDK loader. Current setting remains unchanged if omitted.
dynamicSdkLoaderOptions__hasPerformancebooleanEnable (`true`) or disable (`false`) Performance Monitoring for the dynamic SDK loader. Current setting remains unchanged if omitted.
Parámetros de salida
dataobjectObligatorioA dictionary representing the complete, updated configuration of the client key.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project monitorSENTRY_UPDATE_PROJECT_MONITORAcciónUpdates an existing sentry monitor (used for tracking recurring tasks/cron jobs) within a specific organization and project, allowing modification of its properties such as name, slug, type, status, owner, and muting status.
SENTRY_UPDATE_PROJECT_MONITORAcciónUpdates an existing sentry monitor (used for tracking recurring tasks/cron jobs) within a specific organization and project, allowing modification of its properties such as name, slug, type, status, owner, and muting status.
Parámetros de entrada
namestringObligatorioHuman-readable name for the monitor.
slugstringUnique machine-readable identifier. Must match `^[a-z][a-z0-9_\-]*$`. Changing this requires updating instrumented check-in calls.
typestringObligatorioenumType of the monitor, typically 'cron_job' for scheduled tasks.
cron_jobownerstringTeam or user owner (format: 'team:<team_id>' or 'user:<user_id>').
statusstringenumOperational status. If 'disabled', the monitor won't accept check-ins or count towards quota.
activedisabledis_mutedbooleanIf `True`, prevents monitor from creating incidents. Defaults to `False` if not provided.
monitor_id_or_slugstringObligatorioID or slug of the monitor to update.
project_id_or_slugstringObligatorioID or slug of the Sentry project.
organization_id_or_slugstringObligatorioID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioFull configuration and details of the updated monitor.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project ownership settingsSENTRY_UPDATE_PROJECT_OWNERSHIP_SETTINGSAcciónUpdates the ownership configuration settings (raw rules, fallthrough, auto-assignment, codeowners sync) for a sentry project; omitted attributes retain their current values.
SENTRY_UPDATE_PROJECT_OWNERSHIP_SETTINGSAcciónUpdates the ownership configuration settings (raw rules, fallthrough, auto-assignment, codeowners sync) for a sentry project; omitted attributes retain their current values.
Parámetros de entrada
rawstringRaw Sentry ownership rule string (e.g., 'path:src/components/* #frontend') defining issue assignment based on file paths or URLs. See Sentry's Ownership Rules documentation for syntax.
fallthroughbooleanIf `True`, assigns issues to all project members if no ownership rule matches; if `False`, no owners are set by default in such cases.
autoAssignmentstringStrategy for assigning new issues not covered by ownership rules. Options: 'Auto Assign to Issue Owner', 'Auto Assign to Suspect Commits', 'Turn off Auto-Assignment'.
codeownersAutoSyncbooleanIf `True` (default), automatically synchronizes Sentry issue ownership with the repository's CODEOWNERS file during a release.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioDictionary containing the updated project ownership settings.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update project release file detailsSENTRY_UPDATE_PROJECT_RELEASE_FILE_DETAILSAcciónUpdates the name (path) or distribution identifier of a specific file within an existing project release in sentry.
SENTRY_UPDATE_PROJECT_RELEASE_FILE_DETAILSAcciónUpdates the name (path) or distribution identifier of a specific file within an existing project release in sentry.
Parámetros de entrada
diststringThe new distribution name. A distribution is a unique identifier for a build, often a build number or commit SHA, used to distinguish between different builds of the same release version.
namestringThe new name or full path for the file. For example, '~/dist/main.js'.
file_idstringObligatorioThe unique identifier of the release file to be updated.
versionstringObligatorioThe version identifier of the release, e.g., '1.0.0' or 'my-app@2.3.1'.
project_id_or_slugstringObligatorioThe ID or slug of the project associated with the release file.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update Project Rule By IdSENTRY_UPDATE_PROJECT_RULE_BY_IDAcciónUpdates an existing sentry project issue alert rule by `rule id`, completely overwriting it; all rule fields must be provided in the request, as omitted fields may be cleared or reset to defaults.
SENTRY_UPDATE_PROJECT_RULE_BY_IDAcciónUpdates an existing sentry project issue alert rule by `rule id`, completely overwriting it; all rule fields must be provided in the request, as omitted fields may be cleared or reset to defaults.
Parámetros de entrada
namestringObligatorioThe new name for the alert rule.
ownerstringThe ID of the team or user that owns this rule. Format: `team:TEAM_ID` or `user:USER_ID` or the user's email, or a team name prefixed with '#'. For example, 'user@example.com' or '#platform-team'.
actionsobject[]ObligatorioActions performed when rule conditions and filters are met. Structure varies by action type chosen; refer to Sentry's issue alert rule documentation.
filtersobject[]Optional filters refining when the rule fires after conditions are met. Structure varies by filter type chosen; refer to Sentry's issue alert rule documentation.
rule_idintegerObligatorioThe numeric ID of the alert rule to be updated.
frequencyintegerObligatorioThe minimum interval, in minutes, between actions for the same issue. Valid range is `5` to `43200` (30 days).
conditionsobject[]ObligatorioConditions that trigger the rule. Structure varies by condition type chosen; refer to Sentry's issue alert rule documentation.
actionMatchstringObligatorioenumSpecifies how conditions must align for actions: 'all' (all true), 'any' (at least one true), or 'none' (all false).
allanynoneenvironmentstringSpecific environment for this rule (e.g., 'production'); applies to all environments if omitted.
filterMatchstringenumSpecifies how filters (if any) must align for actions: 'all' (all true), 'any' (at least one true), or 'none' (all false).
allanynoneproject_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry project.
organization_id_or_slugstringObligatorioThe unique identifier (ID) or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary representing the complete, updated alert rule configuration.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update release details for organizationSENTRY_UPDATE_RELEASE_DETAILS_FOR_ORGANIZATIONAcciónUpdates an existing sentry release's details for an organization, including its reference, url, release date, associated commits, or repository references.
SENTRY_UPDATE_RELEASE_DETAILS_FOR_ORGANIZATIONAcciónUpdates an existing sentry release's details for an organization, including its reference, url, release date, associated commits, or repository references.
Parámetros de entrada
refstringCommit reference (e.g., a branch name, tag, or commit SHA) to associate with this release; useful if a tagged version has been provided.
urlstringuriA URL that points to the release. For instance, this can be the path to an online interface to the source code, such as a GitHub URL, or a link to a release announcement.
refsobject[]Indicates or updates the start and end commits for each repository in a release. Head commits require ``repository`` and ``commit`` (HEAD SHA), and can optionally include ``previousCommit`` (SHA of previous release's HEAD) for initial data sends or corrections.
commitsobject[]List of commit data to associate or update for this release; can add new commits or modify existing ones if Sentry's commit tracking needs adjustment.
versionstringObligatorioThe version identifier of the release to be updated (e.g., '1.0.0', 'my-project@2.3.12'). This identifier must be unique within the organization.
dateReleasedstringdate-timeISO 8601 timestamp indicating when the release went live (e.g., '2023-10-26T10:00:00Z'). If not provided, Sentry uses the current time, but an existing dateReleased will not be overwritten unless a new value is provided.
organization_id_or_slugstringObligatorioThe unique ID or human-readable slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing the updated details of the release.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update a saved query for an organizationSENTRY_UPDATE_SAVED_QUERY_FOR_ORGANIZATIONAcciónUpdates an existing discover saved query for a sentry organization.
SENTRY_UPDATE_SAVED_QUERY_FOR_ORGANIZATIONAcciónUpdates an existing discover saved query for a sentry organization.
Parámetros de entrada
endstringdate-timeThe specific end date and time for the query's time range, in ISO 8601 format (e.g., '2023-01-31T23:59:59Z'); used if 'range' is not provided.
namestringObligatorioThe new user-defined name for the saved query.
querystringThe Sentry search query string to filter results (e.g., 'error.type:ZeroDivisionError browser.name:Firefox'). Refer to Sentry's search syntax documentation for details.
rangestringThe relative time range period for this saved query (e.g., '24h', '7d', '30d'); an alternative to specific 'start' and 'end' times.
startstringdate-timeThe specific start date and time for the query's time range, in ISO 8601 format (e.g., '2023-01-01T00:00:00Z'); used if 'range' is not provided.
yAxisstring[]A list of aggregate functions to be plotted on the Y-axis of the chart (e.g., 'count()', 'p95(transaction.duration)').
fieldsstring[]A list of fields, functions, or equations for the query, with a maximum of 20. Each item can be: 1. A built-in key field (e.g., 'transaction'; see Sentry's properties table for event properties). 2. A tag, formatted as 'tag[tagName]' (e.g., 'tag[isEnterprise]'). 3. A function, like 'function_name(parameters,...)' (e.g., 'count_if(transaction.duration,greater,300)'; Discover groups by tags/fields when functions are used; see Sentry's query builder documentation). 4. An equation, prefixed with 'equation|' (e.g., 'equation|count_if(transaction.duration,greater,300) / count() * 100'; see Sentry's documentation on query equations).
displaystringThe visualization type for the saved query chart. Allowed values are: 'default', 'previous', 'top5', 'daily', 'dailytop5', 'bar'.
orderbystringField to sort the query results by. Must be one of the items in the 'fields' list (excluding equations). Prefix with a hyphen '-' for descending order (e.g., '-count()').
intervalstringThe resolution of the time series for the chart (e.g., '1h', '1d', '30m').
projectsinteger[]A list of project IDs to associate with this saved query. An empty list means the query applies to all projects selected in the Sentry UI unless overridden.
query_idintegerObligatorioThe unique identifier of the Discover saved query to be updated.
topEventsintegerThe number of top events' timeseries to be visualized on the chart.
environmentstring[]A list of environment names to filter the query by.
queryDatasetstringenumThe dataset to query.
discovererror-eventstransaction-likeorganization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization to which the saved query belongs.
Parámetros de salida
dataobjectObligatorioA dictionary representing the updated saved query object and its attributes.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update symbol source settingsSENTRY_UPDATE_SYMBOL_SOURCE_SETTINGSAcciónUpdates an existing custom symbol source's settings in a sentry project, such as its type, name, layout preferences, and connection parameters.
SENTRY_UPDATE_SYMBOL_SOURCE_SETTINGSAcciónUpdates an existing custom symbol source's settings in a sentry project, such as its type, name, layout preferences, and connection parameters.
Parámetros de entrada
idstringObligatorioInternal ID to assign or change for the symbol source. Must be distinct and not start with `sentry:`. If omitted, Sentry may assign/retain an ID (e.g., a new UUID).
urlstringURL for HTTP-based symbol sources. Only applicable if `type` is `http`.
namestringObligatorioA human-readable name for the symbol source.
typestringObligatorioenumSymbol source type, which determines applicability/requirements of other fields. * `http` - SymbolServer (HTTP) * `gcs` - Google Cloud Storage * `s3` - Amazon S3
httpgcss3bucketstringName of the GCS or S3 bucket. Required if `type` is `gcs` or `s3`.
prefixstringAn optional path prefix within GCS or S3 buckets, specifying a subdirectory where symbols are located. Optional for GCS and S3 sources; invalid for HTTP sources.
regionstringenumAWS region for S3 type symbol sources. Required if `type` is `s3`. * `us-east-2` - US East (Ohio) * `us-east-1` - US East (N. Virginia) * `us-west-1` - US West (N. California) * `us-west-2` - US West (Oregon) * `ap-east-1` - Asia Pacific (Hong Kong) * `ap-south-1` - Asia Pacific (Mumbai) * `ap-northeast-2` - Asia Pacific (Seoul) * `ap-southeast-1` - Asia Pacific (Singapore) * `ap-southeast-2` - Asia Pacific (Sydney) * `ap-northeast-1` - Asia Pacific (Tokyo) * `ca-central-1` - Canada (Central) * `cn-north-1` - China (Beijing) * `cn-northwest-1` - China (Ningxia) * `eu-central-1` - EU (Frankfurt) * `eu-west-1` - EU (Ireland) * `eu-west-2` - EU (London) * `eu-west-3` - EU (Paris) * `eu-north-1` - EU (Stockholm) * `sa-east-1` - South America (São Paulo) * `us-gov-east-1` - AWS GovCloud (US-East) * `us-gov-west-1` - AWS GovCloud (US)
us-east-2us-east-1us-west-1us-west-2ap-east-1ap-south-1ap-northeast-2ap-southeast-1ap-southeast-2ap-northeast-1ca-central-1cn-north-1+9passwordstringPassword for HTTP symbol source authentication. Only applicable if `type` is `http`.
usernamestringUsername for HTTP symbol source authentication. Only applicable if `type` is `http`.
access_keystringThe AWS Access Key ID for S3 authentication. Required if `type` is `s3`.
secret_keystringThe AWS Secret Access Key for S3 authentication. Required if `type` is `s3`.
private_keystringPrivate key (PEM format) for GCS authentication (from service account key file). Required if `type` is `gcs`.
client_emailstringClient email for GCS authentication (from service account key file). Required if `type` is `gcs`.
layout__typestringenumThe layout type of the symbol source, indicating how symbols are organized. * `native` - Native layout * `symstore` - SymStore (Microsoft) * `symstore_index2` - SymStore (with index2.txt) * `ssqp` - SSQP (Simple Symbol Query Protocol) * `unified` - Unified layout * `debuginfod` - debuginfod server * `slashsymbols` - Symbols with /symbols/ prefix
nativesymstoresymstore_index2ssqpunifieddebuginfodslashsymbolslayout__casingstringenumSpecifies the casing rule for filenames or paths within the symbol source. * `lowercase` - All paths are converted to lowercase. * `uppercase` - All paths are converted to uppercase. * `default` - No transformation is applied (default Sentry behavior).
lowercaseuppercasedefaultproject_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry project where the symbol source will be updated.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the Sentry organization to which the project belongs.
Parámetros de salida
dataobjectObligatorioA dictionary containing the full configuration and details of the updated custom symbol source.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update team information by organization idSENTRY_UPDATE_TEAM_INFORMATION_BY_ORGANIZATION_IDAcciónUpdates the slug for an existing team within a sentry organization.
SENTRY_UPDATE_TEAM_INFORMATION_BY_ORGANIZATION_IDAcciónUpdates the slug for an existing team within a sentry organization.
Parámetros de entrada
slugstringObligatorioThe new slug for the team. Must be unique within the organization.
team_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the team whose slug is to be updated.
organization_id_or_slugstringObligatorioThe unique identifier (ID or slug) of the organization to which the team belongs.
Parámetros de salida
dataobjectObligatorioA dictionary representing the updated team resource.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update user emailSENTRY_UPDATE_USER_EMAILAcciónUpdates the primary email for a sentry user; the new email must be valid and not already in use as a primary email by another sentry account.
SENTRY_UPDATE_USER_EMAILAcciónUpdates the primary email for a sentry user; the new email must be valid and not already in use as a primary email by another sentry account.
Parámetros de entrada
emailstringObligatorioemailThe new primary email address to set for the user. This email must be in a valid format and should not be already registered as a primary email for another Sentry user.
user_idstringObligatorioThe unique identifier of the Sentry user whose primary email address is to be updated. Can be the numerical ID or 'me' for the authenticated user.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Update webhook configurationSENTRY_UPDATE_WEBHOOK_CONFIGURATION_XPAcciónUpdates an existing sentry service hook's target url and subscribed event types for a given project and organization.
SENTRY_UPDATE_WEBHOOK_CONFIGURATION_XPAcciónUpdates an existing sentry service hook's target url and subscribed event types for a given project and organization.
Parámetros de entrada
urlstringObligatorioThe new URL to which Sentry will send webhook notifications.
eventsstring[]ObligatorioA list of Sentry event types for which this webhook will receive notifications.
hook_idstringObligatorioThe unique identifier (GUID) of the service hook to be updated.
project_id_or_slugstringObligatorioThe ID or slug of the project to which the service hook belongs.
organization_id_or_slugstringObligatorioThe ID or slug of the organization to which the service hook belongs.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload dsyms file to projectSENTRY_UPLOAD_DSYMS_FILE_TO_PROJECTAcciónUploads a dsym (debug symbols) zip archive, containing an apple .dsym folder, to the specified sentry project for symbolicating crash reports from apple platforms.
SENTRY_UPLOAD_DSYMS_FILE_TO_PROJECTAcciónUploads a dsym (debug symbols) zip archive, containing an apple .dsym folder, to the specified sentry project for symbolicating crash reports from apple platforms.
Parámetros de entrada
fileobjectbinaryThe dSYM file to upload, provided as a zip archive of an Apple .dSYM folder containing debug symbols.
project_id_or_slugstringObligatorioUnique ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioUnique ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioServer's response data regarding the dSYM file upload and processing, typically including details about created symbol files (IDs, names, checksums, UUIDs, symbol types) or error information if processing failed.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload file to project releaseSENTRY_UPLOAD_FILE_TO_PROJECT_RELEASEAcciónUploads a file to a sentry project release, for an existing organization, project, and version; uses `multipart/form-data` and the region-specific sentry domain.
SENTRY_UPLOAD_FILE_TO_PROJECT_RELEASEAcciónUploads a file to a sentry project release, for an existing organization, project, and version; uses `multipart/form-data` and the region-specific sentry domain.
Parámetros de entrada
diststringOptional: Distribution identifier to distinguish multiple files of the same name within a single release (e.g., for different build variants or AB tests).
fileobjectbinaryThe file to be uploaded.
namestringOptional: Name for the file, ideally an absolute path or URI (e.g., for JavaScript source maps, the full web URI to the original '.js' file).
headerstringOptional: Header for the file, formatted as 'Header-Key: Header-Value' (e.g., 'X-SourceMap:/url/to/sourcemap.map' for SourceMap debug images).
versionstringObligatorioThe version identifier of the release to associate the file with.
project_id_or_slugstringObligatorioThe ID or slug of the Sentry project.
organization_id_or_slugstringObligatorioThe ID or slug of the Sentry organization.
Parámetros de salida
dataobjectObligatorioA dictionary containing details of the uploaded file, such as its ID, name, size, headers, and sha1.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
Upload release file to organizationSENTRY_UPLOAD_RELEASE_FILE_TO_ORGANIZATIONAcciónUploads a new file, such as a source map or debug information, to an existing release version in a sentry organization.
SENTRY_UPLOAD_RELEASE_FILE_TO_ORGANIZATIONAcciónUploads a new file, such as a source map or debug information, to an existing release version in a sentry organization.
Parámetros de entrada
diststringAn optional distribution identifier for the file. This helps differentiate between multiple files with the same name within a single release, often used for build numbers or variant identifiers (e.g., Android versionCode or Xcode build number).
fileobjectbinaryThe file to be uploaded for the release.
namestringThe optional name of the file, which should reflect the absolute path or URI where this file will be referenced. For example, for JavaScript source maps, this could be the full web URI.
headerstringAn optional header string or list of strings to be associated with the artifact. This can be used to specify headers like 'Content-Type' or custom metadata. For example: 'Content-Type:application/json' or ['X-SourceMap: /url/to/source.map', 'Content-Type: application/json'].
versionstringObligatorioThe version identifier of the release.
organization_id_or_slugstringObligatorioThe ID or slug of the organization.
Parámetros de salida
dataobjectObligatorioerrorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not
View organization notification actionsSENTRY_VIEW_ORGANIZATION_NOTIFICATION_ACTIONSAcciónRetrieves spike protection notification actions for a sentry organization, filterable by project ids or slugs (slugs take precedence); if `triggertype` is used, it must be 'spike-protection'.
SENTRY_VIEW_ORGANIZATION_NOTIFICATION_ACTIONSAcciónRetrieves spike protection notification actions for a sentry organization, filterable by project ids or slugs (slugs take precedence); if `triggertype` is used, it must be 'spike-protection'.
Parámetros de entrada
projectinteger[]List of project IDs to filter notification actions. Use `[-1]` for all projects. `project_id_or_slug` takes precedence if also provided.
triggerTypestringFilters actions by trigger type. Currently, only 'spike-protection' is supported.
project_id_or_slugstring[]List of project slugs to filter notification actions. Use `["$all"]` for all projects. Takes precedence over `project` if also specified.
organization_id_or_slugstringObligatorioThe unique ID or slug of the Sentry organization for which to view notification actions.
Parámetros de salida
dataobjectObligatorioA dictionary containing the details of the notification actions that match the query criteria.
errorstringError if any occurred during the execution of the action
successfulbooleanObligatorioWhether or not the action execution was successful or not