{
  "info": {
    "name": "Sentry — mcp.ai",
    "description": "REST API for the Sentry MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/sentry",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "sentry_access_project_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/access/project/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "access",
            "project",
            "information"
          ]
        },
        "description": "Retrieves detailed information for a sentry project, given its existing organization and project id or slug.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_add_organization_member_via_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/organization/member/via/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "organization",
            "member",
            "via",
            "email"
          ]
        },
        "description": "Invites a new member (or re-invites an existing non-accepted member) to a sentry organization via email, allowing specification of organization and team roles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"orgRole\": \"\",\n  \"reinvite\": false,\n  \"teamRoles\": \"\",\n  \"sendInvite\": false,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_add_remove_user_email_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/remove/user/email/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "remove",
            "user",
            "email",
            "by",
            "id"
          ]
        },
        "description": "Adds or removes a secondary email for an existing sentry user, determined by whether the email already exists for that user.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_add_team_member_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/team/member/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "team",
            "member",
            "in",
            "organization"
          ]
        },
        "description": "Adds 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_add_team_to_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/add/team/to/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "add",
            "team",
            "to",
            "project"
          ]
        },
        "description": "Grants a sentry team access to a sentry project within the specified sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_dashboard_with_widgets",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/dashboard/with/widgets",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "dashboard",
            "with",
            "widgets"
          ]
        },
        "description": "Creates 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 is",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"end\": \"\",\n  \"utc\": false,\n  \"start\": \"\",\n  \"title\": \"\",\n  \"period\": \"\",\n  \"filters\": {},\n  \"widgets\": \"\",\n  \"projects\": \"\",\n  \"environment\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_external_user_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/external/user/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "external",
            "user",
            "for",
            "organization"
          ]
        },
        "description": "Links 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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0,\n  \"provider\": \"\",\n  \"external_id\": \"\",\n  \"external_name\": \"\",\n  \"integration_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_organization_alert_rule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/alert/rule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "alert",
            "rule"
          ]
        },
        "description": "Creates a sentry metric alert rule for an organization, mandating a 'critical' trigger, typically for a single project, where actions may require sentry integrations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": \"\",\n  \"query\": \"\",\n  \"dataset\": \"\",\n  \"projects\": \"\",\n  \"triggers\": \"\",\n  \"aggregate\": \"\",\n  \"queryType\": 0,\n  \"eventTypes\": \"\",\n  \"timeWindow\": 0,\n  \"environment\": \"\",\n  \"monitorType\": 0,\n  \"thresholdType\": 0,\n  \"comparisonDelta\": 0,\n  \"resolveThreshold\": 0,\n  \"activationCondition\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_organization_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "monitor"
          ]
        },
        "description": "Creates 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 pr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"type\": \"\",\n  \"owner\": \"\",\n  \"status\": \"\",\n  \"is_muted\": false,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_organization_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/organization/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "organization",
            "team"
          ]
        },
        "description": "Creates a new team in a sentry organization, requiring either a 'slug' (preferred, as 'name' is deprecated) or 'name' to define the team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_project_key_with_optional_rate_limiting",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project/key/with/optional/rate/limiting",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project",
            "key",
            "with",
            "optional",
            "rate",
            "limiting"
          ]
        },
        "description": "Creates a new client key (dsn) for an existing sentry project, with optional custom rate limit configuration.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"rateLimit__count\": 0,\n  \"rateLimit__window\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_project_rule_for_alerts",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project/rule/for/alerts",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project",
            "rule",
            "for",
            "alerts"
          ]
        },
        "description": "Creates 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 fo",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": \"\",\n  \"actions\": \"\",\n  \"filters\": \"\",\n  \"frequency\": 0,\n  \"conditions\": \"\",\n  \"actionMatch\": \"\",\n  \"environment\": \"\",\n  \"filterMatch\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_project_webhook_subscription",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/project/webhook/subscription",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "project",
            "webhook",
            "subscription"
          ]
        },
        "description": "Registers 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"events\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_release_deploy_for_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/release/deploy/for/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "release",
            "deploy",
            "for",
            "org"
          ]
        },
        "description": "Creates a new deploy record in sentry to track the introduction of a release version into a specific environment.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"name\": \"\",\n  \"version\": \"\",\n  \"projects\": \"\",\n  \"dateStarted\": \"\",\n  \"environment\": \"\",\n  \"dateFinished\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_release_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/release/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "release",
            "for",
            "organization"
          ]
        },
        "description": "Creates a new sentry release for an existing organization, associating it with specified projects that must belong to that organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"url\": \"\",\n  \"refs\": \"\",\n  \"commits\": \"\",\n  \"version\": \"\",\n  \"projects\": \"\",\n  \"dateReleased\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_scim_group_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/scim/group/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "scim",
            "group",
            "for",
            "organization"
          ]
        },
        "description": "Creates 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 ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"displayName\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_sentry_external_issue_link",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/sentry/external/issue/link",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "sentry",
            "external",
            "issue",
            "link"
          ]
        },
        "description": "Links an existing sentry issue to an issue in an external service, or updates an existing link, requiring a configured sentry app installation `uuid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\",\n  \"webUrl\": \"\",\n  \"issueId\": 0,\n  \"project\": \"\",\n  \"identifier\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_team_project_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/team/project/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "team",
            "project",
            "for",
            "organization"
          ]
        },
        "description": "Creates a new sentry project for an existing organization and team, allowing configuration of its name, slug, platform, and default alert rules.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"platform\": \"\",\n  \"default_rules\": false,\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_create_user_for_saml_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/create/user/for/saml/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "create",
            "user",
            "for",
            "saml",
            "integration"
          ]
        },
        "description": "Creates a new sentry organization member via a scim request for saml integration; this action does not support setting secondary emails.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"userName\": \"\",\n  \"sentryOrgRole\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_dsyms_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/dsyms/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "dsyms",
            "for",
            "project"
          ]
        },
        "description": "Permanently removes a specific debug information file (dif), used for symbolicating crash reports, from the specified sentry project and organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_external_issue_by_uuid",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/external/issue/by/uuid",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "external",
            "issue",
            "by",
            "uuid"
          ]
        },
        "description": "Unlinks an external issue (e.g., from jira/github), identified by `external issue id`, from the sentry app installation specified by `uuid`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"uuid\": \"\",\n  \"external_issue_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_external_team_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/external/team/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "external",
            "team",
            "by",
            "id"
          ]
        },
        "description": "Unlinks a previously established external team from a sentry team; this action does not delete either the sentry team or the external team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id_or_slug\": \"\",\n  \"external_team_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_external_user_from_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/external/user/from/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "external",
            "user",
            "from",
            "organization"
          ]
        },
        "description": "Deletes the link between an external user (e.g., from an sso provider) and a sentry user within the specified sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"external_user_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_member_from_team",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/member/from/team",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "member",
            "from",
            "team"
          ]
        },
        "description": "Removes an organization member from a sentry team, revoking their team-specific permissions, provided the member is currently part of that team.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_org_notification_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/org/notification/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "org",
            "notification",
            "action"
          ]
        },
        "description": "Deletes 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`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_alert_rule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/alert/rule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "alert",
            "rule"
          ]
        },
        "description": "Deletes a specific metric alert rule within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"alert_rule_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "dashboard"
          ]
        },
        "description": "Deletes a custom dashboard or tombstones (marks as deleted) a pre-built dashboard within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dashboard_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_discover_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/discover/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "discover",
            "query"
          ]
        },
        "description": "Permanently removes a specific saved discover query (a configuration for exploring event data) from a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "integration"
          ]
        },
        "description": "Permanently deletes a specific integration previously installed for the sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "issue"
          ]
        },
        "description": "Permanently deletes a specific sentry issue, identified by its id, from an organization; this operation is irreversible and idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "member"
          ]
        },
        "description": "Permanently removes a member from a sentry organization, revoking their access to that organization and all its associated projects.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "monitor"
          ]
        },
        "description": "Deletes a sentry cron monitor or, if `environment` is specified, only specific environments within that monitor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"environment\": \"\",\n  \"monitor_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_organization_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/organization/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "organization",
            "release"
          ]
        },
        "description": "Permanently and irreversibly removes a sentry release, including all its associated files, identified by its version from the specified organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "by",
            "id"
          ]
        },
        "description": "Schedules a sentry project for asynchronous deletion within a specified organization, hiding it from most public views once the process begins.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_hook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/hook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "hook"
          ]
        },
        "description": "Deletes a specific service hook from a sentry project using its organization, project, and hook identifiers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hook_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_issues",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/issues",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "issues"
          ]
        },
        "description": "Permanently removes specified issues from a sentry project; if no issue ids are provided, it removes the oldest 1000 issues.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_key",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/key",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "key"
          ]
        },
        "description": "Permanently deletes a specific client key (dsn) for a project, preventing it from being used to send events to sentry.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "monitor"
          ]
        },
        "description": "Deletes a sentry monitor, or optionally only its specified environments, for a given project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"environment\": \"\",\n  \"monitor_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_replay",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/replay",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "replay"
          ]
        },
        "description": "Permanently 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"replay_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_rule",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/rule",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "rule"
          ]
        },
        "description": "Permanently deletes a specific issue alert rule from an existing project within an existing sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rule_id\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_symbol_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/symbol/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "symbol",
            "sources"
          ]
        },
        "description": "Deletes a specific custom symbol source from a project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_project_team_association",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/project/team/association",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "project",
            "team",
            "association"
          ]
        },
        "description": "Revokes a team's access to a sentry project; this operation is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_release_file",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/release/file",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "release",
            "file"
          ]
        },
        "description": "Permanently deletes a specific file from an existing release, project, and organization; this action is idempotent.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_release_file_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/release/file/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "release",
            "file",
            "by",
            "id"
          ]
        },
        "description": "Permanently deletes a specific build artifact (e.g., source map, application bundle) associated with a release.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_team_by_organization_or_team_slug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/by/organization/or/team/slug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "by",
            "organization",
            "or",
            "team",
            "slug"
          ]
        },
        "description": "Schedules a sentry team for asynchronous deletion, which releases the team's slug for reuse upon successful scheduling.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_team_from_org_scim_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/team/from/org/scim/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "team",
            "from",
            "org",
            "scim",
            "v2"
          ]
        },
        "description": "Permanently and irreversibly deletes a specific team from a sentry organization via a scim v2 request, provided scim integration is enabled for the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_user_emails_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/emails/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "emails",
            "by",
            "id"
          ]
        },
        "description": "Permanently 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_delete_user_from_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/user/from/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "user",
            "from",
            "org"
          ]
        },
        "description": "Removes a scim-managed member from a sentry organization that has scim enabled, permanently revoking their access.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_issue_event_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/issue/event/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "issue",
            "event",
            "by",
            "id"
          ]
        },
        "description": "Retrieves the 'latest', 'oldest', or 'recommended' event for a sentry issue, optionally filtered by environment(s).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\",\n  \"issue_id\": 0,\n  \"environment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_organization_alert_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/alert/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "alert",
            "rules"
          ]
        },
        "description": "Retrieves a list of active metric alert rules for an existing sentry organization, identified by its id or slug.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_organization_release_threshold_statuses",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/release/threshold/statuses",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "release",
            "threshold",
            "statuses"
          ]
        },
        "description": "Retrieves 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 provi",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"start\": \"\",\n  \"release\": \"\",\n  \"environment\": \"\",\n  \"projectSlug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_organization_replay_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/replay/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "replay",
            "count"
          ]
        },
        "description": "Retrieves the total count of session replays for a specified sentry organization, filterable by time range, environment, project, and query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"project\": \"\",\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_organization_replay_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/replay/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "replay",
            "details"
          ]
        },
        "description": "Retrieves 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 pro",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"sort\": \"\",\n  \"field\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"cursor\": \"\",\n  \"project\": \"\",\n  \"per_page\": 0,\n  \"replay_id\": \"\",\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_organization_replay_selectors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/organization/replay/selectors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "organization",
            "replay",
            "selectors"
          ]
        },
        "description": "Fetches 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"sort\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"cursor\": \"\",\n  \"project\": \"\",\n  \"per_page\": 0,\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_project_environment_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/project/environment/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "project",
            "environment",
            "details"
          ]
        },
        "description": "Retrieves detailed information for a specific environment within a sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"environment\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_project_ownership_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/project/ownership/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "project",
            "ownership",
            "details"
          ]
        },
        "description": "Retrieves the ownership configuration, like codeowners rules or issue owner settings, for a specified sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_project_release_files",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/project/release/files",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "project",
            "release",
            "files"
          ]
        },
        "description": "Retrieves 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 f",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_project_replay_clicks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/project/replay/clicks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "project",
            "replay",
            "clicks"
          ]
        },
        "description": "Fetches a list of user click interactions for a specific sentry session replay, including the clicked dom element id and timestamp.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"cursor\": \"\",\n  \"per_page\": 0,\n  \"replay_id\": \"\",\n  \"environment\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_fetch_replay_recording_segment",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/fetch/replay/recording/segment",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "fetch",
            "replay",
            "recording",
            "segment"
          ]
        },
        "description": "Retrieves a specific recording segment for a sentry replay, requiring valid organization, project, replay, and segment identifiers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"replay_id\": \"\",\n  \"segment_id\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_activation_of_alert_rule_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/activation/of/alert/rule/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "activation",
            "of",
            "alert",
            "rule",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves all activations (triggered instances) for a specific metric alert rule within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"alert_rule_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_integration_details_by_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/integration/details/by/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "integration",
            "details",
            "by",
            "org"
          ]
        },
        "description": "Retrieves details for a specific integration, identified by `integration id`, installed within an existing sentry organization, identified by `organization id or slug`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"integration_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_by_id_or_slug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/by/id/or/slug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "by",
            "id",
            "or",
            "slug"
          ]
        },
        "description": "Retrieves a sentry organization by its id or slug; use the `detailed` parameter to optionally exclude project and team details for a more concise response.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"detailed\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "details"
          ]
        },
        "description": "Retrieves sentry organizations accessible via the current authentication, with scope varying between user (all in region) and api key (linked org only) credentials.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner\": false,\n  \"query\": \"\",\n  \"cursor\": \"\",\n  \"sortBy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_environments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/environments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "environments"
          ]
        },
        "description": "Retrieves a list of deployment environments (e.g., 'production', 'staging') for a sentry organization, optionally filtering by visibility.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"visibility\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_issue_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/issue/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "issue",
            "details"
          ]
        },
        "description": "Retrieves detailed information for a specific issue within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"issue_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_monitor_by_id_or_slug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/monitor/by/id/or/slug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "monitor",
            "by",
            "id",
            "or",
            "slug"
          ]
        },
        "description": "Retrieves detailed information for a specific monitor (e.g., a cron job or scheduled task) within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"environment\": \"\",\n  \"monitor_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_release_version",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/release/version",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "release",
            "version"
          ]
        },
        "description": "Retrieves detailed information, including optional health data and statistics, for a specific release version within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"sort\": \"\",\n  \"query\": \"\",\n  \"health\": false,\n  \"status\": \"\",\n  \"version\": \"\",\n  \"project_id\": \"\",\n  \"adoptionStages\": false,\n  \"healthStatsPeriod\": \"\",\n  \"summaryStatsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_sessions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/sessions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "sessions"
          ]
        },
        "description": "Retrieves 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 ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"field\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"groupBy\": \"\",\n  \"orderBy\": \"\",\n  \"project\": \"\",\n  \"interval\": \"\",\n  \"per_page\": 0,\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"includeSeries\": 0,\n  \"includeTotals\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_organization_stats_summary",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/organization/stats/summary",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "organization",
            "stats",
            "summary"
          ]
        },
        "description": "Retrieves 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 filter",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"field\": \"\",\n  \"start\": \"\",\n  \"reason\": \"\",\n  \"outcome\": \"\",\n  \"project\": \"\",\n  \"category\": \"\",\n  \"download\": false,\n  \"interval\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_event_stats",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/event/stats",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "event",
            "stats"
          ]
        },
        "description": "Retrieves event statistics for a specified sentry project, returning data as [timestamp, count] pairs; ensure `since` precedes `until` if both are provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"stat\": \"\",\n  \"since\": \"\",\n  \"until\": \"\",\n  \"resolution\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "events"
          ]
        },
        "description": "Retrieves a list of error events for a specified project within a sentry organization, with options for pagination and detail level.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"full\": false,\n  \"cursor\": \"\",\n  \"sample\": false,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_hook",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/hook",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "hook"
          ]
        },
        "description": "Retrieves detailed information for an existing service hook, identified by `hook id`, within a specific sentry project and organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"hook_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "list"
          ]
        },
        "description": "Retrieves a list of sentry projects (representing monitored applications or services), useful for discovery or selecting a project for subsequent operations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_monitor_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/monitor/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "monitor",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information for a specific sentry cron monitor, provided the organization, project, and monitor exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"monitor_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_project_rule_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/project/rule/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "project",
            "rule",
            "details"
          ]
        },
        "description": "Retrieves detailed information for a specific issue alert rule within a sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rule_id\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_scim_group_by_team_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/scim/group/by/team/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "scim",
            "group",
            "by",
            "team",
            "id"
          ]
        },
        "description": "Retrieves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_sentry_app_installations_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/sentry/app/installations/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "sentry",
            "app",
            "installations",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves a list of sentry app installations for a given organization, which must exist.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_team_members_by_id_or_slug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/team/members/by/id/or/slug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "team",
            "members",
            "by",
            "id",
            "or",
            "slug"
          ]
        },
        "description": "Retrieves a list of all active members for a sentry team, excluding users with pending invitations.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_get_who_viewed_replay_by_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/who/viewed/replay/by/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "who",
            "viewed",
            "replay",
            "by",
            "project"
          ]
        },
        "description": "Retrieves users who viewed a specific, existing session replay within a sentry project and organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"replay_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_organization_dashboards",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/dashboards",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "dashboards"
          ]
        },
        "description": "Retrieves a list of custom dashboards for a sentry organization, with pagination support.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"per_page\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_organization_members",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/members",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "members"
          ]
        },
        "description": "Lists all members, including those with pending invitations, for a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_organization_releases",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/releases",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "releases"
          ]
        },
        "description": "Retrieves a list of releases for an existing sentry organization, optionally filtering by a query string that matches the start of the release version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_organization_repositories",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/repositories",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "repositories"
          ]
        },
        "description": "Retrieves a list of version control repositories for a specific sentry organization, which must exist and is identified by its id or slug.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_organization_user_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/organization/user/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "organization",
            "user",
            "teams"
          ]
        },
        "description": "Retrieves a list of all teams that the authenticated user has access to within the specified sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_project_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/project/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "project",
            "users"
          ]
        },
        "description": "Retrieves users who have interacted with or are recognized within a specific sentry project, optionally filtered by a query.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_scim_v2_organization_users",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/scim/v2/organization/users",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "scim",
            "v2",
            "organization",
            "users"
          ]
        },
        "description": "Retrieves a paginated list of scim (system for cross-domain identity management) users for a sentry organization, allowing for filtering, pagination, and attribute exclusion.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"count\": 0,\n  \"filter\": \"\",\n  \"startIndex\": 0,\n  \"excludedAttributes\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_list_teams_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/teams/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "teams",
            "in",
            "organization"
          ]
        },
        "description": "Lists teams for an existing sentry organization, optionally including project details and supporting pagination via a cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"detailed\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_manage_team_external_integrations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/manage/team/external/integrations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "manage",
            "team",
            "external",
            "integrations"
          ]
        },
        "description": "Links 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"provider\": \"\",\n  \"external_id\": \"\",\n  \"external_name\": \"\",\n  \"integration_id\": 0,\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_modify_organization_monitor_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/organization/monitor/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "organization",
            "monitor",
            "data"
          ]
        },
        "description": "Updates 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 orga",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"type\": \"\",\n  \"owner\": \"\",\n  \"status\": \"\",\n  \"is_muted\": false,\n  \"monitor_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_modify_organization_notification_action",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/organization/notification/action",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "organization",
            "notification",
            "action"
          ]
        },
        "description": "Modifies an organization's notification action, specifically for `spike-protection` triggers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projects\": \"\",\n  \"action_id\": 0,\n  \"service_type\": \"\",\n  \"trigger_type\": \"\",\n  \"integration_id\": 0,\n  \"target_display\": \"\",\n  \"target_identifier\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_modify_organization_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/organization/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "organization",
            "settings"
          ]
        },
        "description": "Updates settings for a sentry organization, such as name, slug, member roles, privacy, and integrations; if `avatartype` is 'upload', `avatar` (base64 image) is required.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"avatar\": \"\",\n  \"avatarType\": \"\",\n  \"require2FA\": false,\n  \"safeFields\": \"\",\n  \"defaultRole\": \"\",\n  \"githubPRBot\": false,\n  \"dataScrubber\": false,\n  \"codecovAccess\": false,\n  \"trustedRelays\": \"\",\n  \"cancelDeletion\": false,\n  \"debugFilesRole\": \"\",\n  \"hideAiFeatures\": false,\n  \"isEarlyAdopter\": false,\n  \"openMembership\": false,\n  \"relayPiiConfig\": \"\",\n  \"attachmentsRole\": \"\",\n  \"enhancedPrivacy\": false,\n  \"githubOpenPRBot\": false,\n  \"sensitiveFields\": \"\",\n  \"scrapeJavaScript\": false,\n  \"scrubIPAddresses\": false,\n  \"alertsMemberWrite\": false,\n  \"allowJoinRequests\": false,\n  \"allowSharedIssues\": false,\n  \"eventsMemberAdmin\": false,\n  \"githubNudgeInvite\": false,\n  \"storeCrashReports\": 0,\n  \"dataScrubberDefaults\": false,\n  \"issueAlertsThreadFlag\": false,\n  \"metricAlertsThreadFlag\": false,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_modify_release_file_attributes",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/modify/release/file/attributes",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "modify",
            "release",
            "file",
            "attributes"
          ]
        },
        "description": "Updates attributes (e.g., name, distribution) of a specific file within an existing release, identified by organization, version, and file id.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dist\": \"\",\n  \"name\": \"\",\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_patch_scim_group_operations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/scim/group/operations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "scim",
            "group",
            "operations"
          ]
        },
        "description": "Performs scim patch operations (rfc 7644) to update attributes of a scim-enabled sentry team, provided scim integration is active for the organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"team_id\": 0,\n  \"Operations\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_patch_user_active_status_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/patch/user/active/status/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "patch",
            "user",
            "active",
            "status",
            "in",
            "organization"
          ]
        },
        "description": "Deactivates and permanently deletes a sentry organization member by using a scim patch operation to set their 'active' attribute to 'false'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"Operations\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_post_project_symbol_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/project/symbol/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "project",
            "symbol",
            "sources"
          ]
        },
        "description": "Adds 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:'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"bucket\": \"\",\n  \"prefix\": \"\",\n  \"region\": \"\",\n  \"password\": \"\",\n  \"username\": \"\",\n  \"access_key\": \"\",\n  \"secret_key\": \"\",\n  \"private_key\": \"\",\n  \"client_email\": \"\",\n  \"layout__type\": \"\",\n  \"layout__casing\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_post_spike_protection_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/post/spike/protection/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "post",
            "spike",
            "protection",
            "for",
            "organization"
          ]
        },
        "description": "Enables or updates spike protection for specified projects (or all projects using `['$all']`) within an existing sentry organization, to which the projects must belong.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projects\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_alert_rule_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/alert/rule/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "alert",
            "rule",
            "details"
          ]
        },
        "description": "Retrieves detailed information for a specific metric alert rule within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"alert_rule_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_commit_files_for_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/commit/files/for/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "commit",
            "files",
            "for",
            "release"
          ]
        },
        "description": "Retrieves files changed in commits for a specified sentry release; the release must exist and have linked commits.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_commits_for_organization_repo",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/commits/for/organization/repo",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "commits",
            "for",
            "organization",
            "repo"
          ]
        },
        "description": "Retrieves a list of commits for a given repository within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"repo_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_dsym_files_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/dsym/files/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "dsym",
            "files",
            "for",
            "project"
          ]
        },
        "description": "Retrieve a list of debug information files (dsym files) for a specified sentry project, used for symbolication to display human-readable stack traces.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_event_id_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/event/id/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "event",
            "id",
            "for",
            "organization"
          ]
        },
        "description": "Resolves a sentry event id to its project and issue details within an accessible sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_files_for_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/files/for/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "files",
            "for",
            "release"
          ]
        },
        "description": "Retrieves 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 dictiona",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_issue_events_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/issue/events/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "issue",
            "events",
            "by",
            "id"
          ]
        },
        "description": "Retrieves events for a specified sentry `issue id`, which must be an existing issue.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"full\": false,\n  \"query\": \"\",\n  \"start\": \"\",\n  \"sample\": false,\n  \"issue_id\": 0,\n  \"environment\": \"\",\n  \"statsPeriod\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_issue_hashes_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/issue/hashes/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "issue",
            "hashes",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves a list of grouping checksums (hashes) generated by sentry for a specific issue within an organization, used for understanding event aggregation.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"full\": false,\n  \"cursor\": \"\",\n  \"issue_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_issue_tag_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/issue/tag/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "issue",
            "tag",
            "details"
          ]
        },
        "description": "Retrieves 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).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"issue_id\": 0,\n  \"environment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_monitor_checkins",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/monitor/checkins",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "monitor",
            "checkins"
          ]
        },
        "description": "Retrieves the history of check-ins for a sentry monitor, providing insights into the health and performance of associated scheduled tasks.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"monitor_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_monitor_checkins_by_org",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/monitor/checkins/by/org",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "monitor",
            "checkins",
            "by",
            "org"
          ]
        },
        "description": "Retrieves check-ins (pings/heartbeats of a monitored cron job or task) for a specific monitor within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"monitor_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_notification_action_by_org_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/notification/action/by/org/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "notification",
            "action",
            "by",
            "org",
            "id"
          ]
        },
        "description": "Retrieves details for a specific spike protection notification action, which defines alerts for triggered spike protection rules, within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"action_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_org_integration_config",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/org/integration/config",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "org",
            "integration",
            "config"
          ]
        },
        "description": "Retrieves configuration for all integrations, or a specific integration if `providerkey` is given, for an existing sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"providerKey\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "dashboard"
          ]
        },
        "description": "Fetches detailed information about a specific custom dashboard within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dashboard_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_events",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/events",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "events"
          ]
        },
        "description": "Retrieves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"sort\": \"\",\n  \"field\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"project\": \"\",\n  \"per_page\": 0,\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_integrations_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/integrations/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "integrations",
            "list"
          ]
        },
        "description": "Retrieves a list of available integrations for an existing sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"features\": \"\",\n  \"providerKey\": \"\",\n  \"includeConfig\": false,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "member"
          ]
        },
        "description": "Retrieves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_monitors",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/monitors",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "monitors"
          ]
        },
        "description": "Retrieves cron monitors for a sentry organization, including details of nested monitor environments.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"owner\": \"\",\n  \"project\": \"\",\n  \"environment\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "projects"
          ]
        },
        "description": "Retrieves a list of sentry projects for a specified organization (which must be accessible), supporting pagination via cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_relay_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/relay/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "relay",
            "usage"
          ]
        },
        "description": "Retrieves relay usage information, primarily a list of trusted relays, for a specified sentry organization, which must have relay usage enabled.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_release_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/release/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "release",
            "commits"
          ]
        },
        "description": "Retrieves a list of commits for a given release version in an existing sentry organization, if the release exists.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_replays",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/replays",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "replays"
          ]
        },
        "description": "Fetches session replays for a sentry organization; use `statsperiod` for relative time, or `start` and `end` (used together) for absolute time ranges.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"sort\": \"\",\n  \"field\": \"\",\n  \"query\": \"\",\n  \"start\": \"\",\n  \"cursor\": \"\",\n  \"project\": \"\",\n  \"per_page\": 0,\n  \"environment\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_scim_groups",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/scim/groups",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "scim",
            "groups"
          ]
        },
        "description": "Retrieves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"count\": 0,\n  \"filter\": \"\",\n  \"startIndex\": 0,\n  \"excludedAttributes\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_organization_stats_v2",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/organization/stats/v2",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "organization",
            "stats",
            "v2"
          ]
        },
        "description": "Retrieves 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) m",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"field\": \"\",\n  \"start\": \"\",\n  \"reason\": \"\",\n  \"groupBy\": \"\",\n  \"outcome\": \"\",\n  \"project\": \"\",\n  \"category\": \"\",\n  \"interval\": \"\",\n  \"statsPeriod\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_environments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/environments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "environments"
          ]
        },
        "description": "Retrieves a list of environments for an existing project within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"visibility\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_event_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/event/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "event",
            "by",
            "id"
          ]
        },
        "description": "Retrieves detailed information for a specific sentry event using its id, organization identifier, and project identifier.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_filter_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/filter/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "filter",
            "data"
          ]
        },
        "description": "Retrieves a sentry project's current data filtering settings, used to ignore events from sources like localhost, web crawlers, or legacy browsers.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_hooks",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/hooks",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "hooks"
          ]
        },
        "description": "Return a list of service hooks (webhooks) bound to a sentry project, used to send notifications to external services upon event occurrences.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_issues_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/issues/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "issues",
            "list"
          ]
        },
        "description": "Retrieves a list of issues for a sentry project, defaulting to unresolved issues unless an empty `query` string is provided or specific `hashes` are used.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"cursor\": \"\",\n  \"hashes\": \"\",\n  \"statsPeriod\": \"\",\n  \"shortIdLookup\": false,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_key_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/key/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "key",
            "details"
          ]
        },
        "description": "Retrieves details of a specific client key (dsn) for a sentry project, which is used by sentry sdks to send event data.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_keys_by_org_and_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/keys/by/org/and/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "keys",
            "by",
            "org",
            "and",
            "project"
          ]
        },
        "description": "Retrieves a list of client keys (dsns), used by sentry sdks to send events, for a specified project within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"status\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_members_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/members/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "members",
            "list"
          ]
        },
        "description": "Retrieves active organization members belonging to any team assigned to the specified sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_release_file_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/release/file/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "release",
            "file",
            "details"
          ]
        },
        "description": "Retrieves metadata (default) or raw content (if `download` is true) for a specific file within a sentry project's release version.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"download\": false,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_rules_by_org_and_project_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/rules/by/org/and/project/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "rules",
            "by",
            "org",
            "and",
            "project",
            "id"
          ]
        },
        "description": "Retrieves a list of active issue alert rules associated with a specific project within an organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_symbol_sources",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/symbol/sources",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "symbol",
            "sources"
          ]
        },
        "description": "Retrieves custom symbol sources for a sentry project, either listing all or fetching a specific one if its id is provided.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_tag_values",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/tag/values",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "tag",
            "values"
          ]
        },
        "description": "Retrieves up to 1000 unique values for a specified tag key that has been recorded for events within a sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_project_teams",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/project/teams",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "project",
            "teams"
          ]
        },
        "description": "Retrieves a list of teams with explicit access to a specific project within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_release_commits",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/release/commits",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "release",
            "commits"
          ]
        },
        "description": "Retrieves a list of commits associated with a specific release version within a sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_release_deployments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/release/deployments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "release",
            "deployments"
          ]
        },
        "description": "Retrieves a list of all deployment records for a specific release version in an organization, detailing each deployment's environment and timestamps.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_release_file_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/release/file/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "release",
            "file",
            "by",
            "id"
          ]
        },
        "description": "Retrieves a specific file's content or its metadata from a sentry release, using the `download` parameter to choose between raw content or json metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"download\": false,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_replay_recording_segments",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/replay/recording/segments",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "replay",
            "recording",
            "segments"
          ]
        },
        "description": "Retrieves a paginated list of recording segments for a specific sentry replay, used for reconstructing or analyzing the replay.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"per_page\": 0,\n  \"replay_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_saved_discover_queries",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/saved/discover/queries",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "saved",
            "discover",
            "queries"
          ]
        },
        "description": "Retrieves a list of saved discover queries for a sentry organization, optionally filtered and sorted.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"cursor\": \"\",\n  \"sortBy\": \"\",\n  \"per_page\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_saved_discover_query_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/saved/discover/query/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "saved",
            "discover",
            "query",
            "for",
            "organization"
          ]
        },
        "description": "Retrieves a specific saved discover query (a predefined set of filters and conditions for exploring event data) for a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_short_id_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/short/id/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "short",
            "id",
            "for",
            "organization"
          ]
        },
        "description": "Resolves an existing sentry short id to its issue details within a valid sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"short_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_source_map_debug_event",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/source/map/debug/event",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "source",
            "map",
            "debug",
            "event"
          ]
        },
        "description": "Retrieves detailed debug information for diagnosing source map processing issues for a specific sentry event, stack trace frame, and exception index.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"event_id\": \"\",\n  \"frame_idx\": 0,\n  \"exception_idx\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_team_info_via_organization_id_or_slug",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/info/via/organization/id/or/slug",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "info",
            "via",
            "organization",
            "id",
            "or",
            "slug"
          ]
        },
        "description": "Retrieves detailed information for an existing sentry team within its organization, optionally expanding related data (e.g., projects) or collapsing sections (e.g., organization details).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"expand\": \"\",\n  \"collapse\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_team_projects",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/team/projects",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "team",
            "projects"
          ]
        },
        "description": "Retrieves a list of sentry projects for a specific team within an organization, supporting pagination via a cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"cursor\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_user_email_information",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/user/email/information",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "user",
            "email",
            "information"
          ]
        },
        "description": "Retrieves a list of email addresses for an existing sentry user, identified by their `user id`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_user_feedback_for_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/user/feedback/for/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "user",
            "feedback",
            "for",
            "project"
          ]
        },
        "description": "Retrieves user feedback for a project from sentry's older 'user reports' system, excluding feedback from the modern 'user feedback widget'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_retrieve_user_via_scim_api",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/retrieve/user/via/scim/api",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "retrieve",
            "user",
            "via",
            "scim",
            "api"
          ]
        },
        "description": "Retrieves 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'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"member_id\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_save_organization_discover_query",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/save/organization/discover/query",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "save",
            "organization",
            "discover",
            "query"
          ]
        },
        "description": "Saves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"name\": \"\",\n  \"query\": \"\",\n  \"range\": \"\",\n  \"start\": \"\",\n  \"yAxis\": \"\",\n  \"fields\": \"\",\n  \"display\": \"\",\n  \"orderby\": \"\",\n  \"interval\": \"\",\n  \"projects\": \"\",\n  \"topEvents\": 0,\n  \"environment\": \"\",\n  \"queryDataset\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_sentry_fetch_tag_values_for_issue",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/sentry/fetch/tag/values/for/issue",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "sentry",
            "fetch",
            "tag",
            "values",
            "for",
            "issue"
          ]
        },
        "description": "Retrieves 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"key\": \"\",\n  \"sort\": \"\",\n  \"issue_id\": 0,\n  \"environment\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_submit_notification_action_api_data",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/notification/action/api/data",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "notification",
            "action",
            "api",
            "data"
          ]
        },
        "description": "Creates 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 `",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"projects\": \"\",\n  \"service_type\": \"\",\n  \"trigger_type\": \"\",\n  \"integration_id\": 0,\n  \"target_display\": \"\",\n  \"target_identifier\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_submit_project_user_feedback",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/submit/project/user/feedback",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "submit",
            "project",
            "user",
            "feedback"
          ]
        },
        "description": "Deprecated: 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"email\": \"\",\n  \"comments\": \"\",\n  \"event_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_switch_team_role_for_member",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/switch/team/role/for/member",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "switch",
            "team",
            "role",
            "for",
            "member"
          ]
        },
        "description": "Changes 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"teamRole\": \"\",\n  \"member_id\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_toggle_project_filter_status",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/toggle/project/filter/status",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "toggle",
            "project",
            "filter",
            "status"
          ]
        },
        "description": "Updates 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`.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"active\": false,\n  \"filter_id\": \"\",\n  \"subfilters\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_environment_visibility",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/environment/visibility",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "environment",
            "visibility"
          ]
        },
        "description": "Updates the visibility of a specific environment within a sentry project.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"isHidden\": false,\n  \"environment\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_external_team_integration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/external/team/integration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "external",
            "team",
            "integration"
          ]
        },
        "description": "Updates 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 organizati",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"provider\": \"\",\n  \"external_id\": \"\",\n  \"external_name\": \"\",\n  \"integration_id\": 0,\n  \"team_id_or_slug\": \"\",\n  \"external_team_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_external_user_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/external/user/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "external",
            "user",
            "for",
            "organization"
          ]
        },
        "description": "Updates attributes of an existing external user linkage (identified by `external user id`) within a sentry organization (specified by `organization id or slug`).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"user_id\": 0,\n  \"provider\": \"\",\n  \"external_id\": \"\",\n  \"external_name\": \"\",\n  \"integration_id\": 0,\n  \"external_user_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_issue_attributes_in_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/issue/attributes/in/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "issue",
            "attributes",
            "in",
            "organization"
          ]
        },
        "description": "Updates specified attributes of an existing sentry issue within a sentry organization, leaving other attributes unchanged.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"status\": \"\",\n  \"hasSeen\": false,\n  \"isPublic\": false,\n  \"issue_id\": \"\",\n  \"assignedTo\": \"\",\n  \"isBookmarked\": false,\n  \"isSubscribed\": false,\n  \"organization_id_or_slug\": \"\",\n  \"statusDetails__inCommit\": \"\",\n  \"statusDetails__inRelease\": \"\",\n  \"statusDetails__inNextRelease\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_organization_alert_rules",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organization/alert/rules",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organization",
            "alert",
            "rules"
          ]
        },
        "description": "Replaces an existing sentry metric alert rule's configuration; fields not provided in the request are removed or reset.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": \"\",\n  \"query\": \"\",\n  \"dataset\": \"\",\n  \"projects\": \"\",\n  \"triggers\": \"\",\n  \"aggregate\": \"\",\n  \"queryType\": 0,\n  \"eventTypes\": \"\",\n  \"timeWindow\": 0,\n  \"environment\": \"\",\n  \"monitorType\": 0,\n  \"alert_rule_id\": 0,\n  \"thresholdType\": 0,\n  \"comparisonDelta\": 0,\n  \"resolveThreshold\": 0,\n  \"activationCondition\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_organization_dashboard",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organization/dashboard",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organization",
            "dashboard"
          ]
        },
        "description": "Updates an existing custom dashboard, allowing modifications to its title, widgets, and data filters; providing `widgets`, `projects`, `environment`, `period`, `start`, `end`, or `filters` will overwr",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"end\": \"\",\n  \"utc\": false,\n  \"start\": \"\",\n  \"title\": \"\",\n  \"period\": \"\",\n  \"filters\": {},\n  \"widgets\": \"\",\n  \"projects\": \"\",\n  \"environment\": \"\",\n  \"dashboard_id\": 0,\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_organization_member_role",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/organization/member/role",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "organization",
            "member",
            "role"
          ]
        },
        "description": "Updates 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 int",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"orgRole\": \"\",\n  \"member_id\": \"\",\n  \"teamRoles\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "details"
          ]
        },
        "description": "Updates 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 `proj",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"platform\": \"\",\n  \"resolveAge\": 0,\n  \"isBookmarked\": false,\n  \"highlightTags\": \"\",\n  \"subjectPrefix\": \"\",\n  \"subjectTemplate\": \"\",\n  \"highlightContext\": {},\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_issue_status_and_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/issue/status/and/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "issue",
            "status",
            "and",
            "details"
          ]
        },
        "description": "Bulk 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).",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": 0,\n  \"merge\": false,\n  \"status\": \"\",\n  \"hasSeen\": false,\n  \"isPublic\": false,\n  \"assignedTo\": \"\",\n  \"isBookmarked\": false,\n  \"ignoreDuration\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\",\n  \"statusDetails__inCommit\": \"\",\n  \"statusDetails__inRelease\": \"\",\n  \"statusDetails__ignoreCount\": 0,\n  \"statusDetails__ignoreWindow\": 0,\n  \"statusDetails__inNextRelease\": false,\n  \"statusDetails__ignoreDuration\": 0,\n  \"statusDetails__ignoreUserCount\": 0,\n  \"statusDetails__ignoreUserWindow\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_key_configuration",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/key/configuration",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "key",
            "configuration"
          ]
        },
        "description": "Updates 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",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"key_id\": \"\",\n  \"isActive\": false,\n  \"rateLimit__count\": 0,\n  \"browserSdkVersion\": \"\",\n  \"rateLimit__window\": 0,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\",\n  \"dynamicSdkLoaderOptions__hasDebug\": false,\n  \"dynamicSdkLoaderOptions__hasReplay\": false,\n  \"dynamicSdkLoaderOptions__hasPerformance\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_monitor",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/monitor",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "monitor"
          ]
        },
        "description": "Updates 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, o",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"slug\": \"\",\n  \"type\": \"\",\n  \"owner\": \"\",\n  \"status\": \"\",\n  \"is_muted\": false,\n  \"monitor_id_or_slug\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_ownership_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/ownership/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "ownership",
            "settings"
          ]
        },
        "description": "Updates the ownership configuration settings (raw rules, fallthrough, auto-assignment, codeowners sync) for a sentry project; omitted attributes retain their current values.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"raw\": \"\",\n  \"fallthrough\": false,\n  \"autoAssignment\": \"\",\n  \"codeownersAutoSync\": false,\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_release_file_details",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/release/file/details",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "release",
            "file",
            "details"
          ]
        },
        "description": "Updates the name (path) or distribution identifier of a specific file within an existing project release in sentry.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dist\": \"\",\n  \"name\": \"\",\n  \"file_id\": \"\",\n  \"version\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_project_rule_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/project/rule/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "project",
            "rule",
            "by",
            "id"
          ]
        },
        "description": "Updates 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"name\": \"\",\n  \"owner\": \"\",\n  \"actions\": \"\",\n  \"filters\": \"\",\n  \"rule_id\": 0,\n  \"frequency\": 0,\n  \"conditions\": \"\",\n  \"actionMatch\": \"\",\n  \"environment\": \"\",\n  \"filterMatch\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_release_details_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/release/details/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "release",
            "details",
            "for",
            "organization"
          ]
        },
        "description": "Updates an existing sentry release's details for an organization, including its reference, url, release date, associated commits, or repository references.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"ref\": \"\",\n  \"url\": \"\",\n  \"refs\": \"\",\n  \"commits\": \"\",\n  \"version\": \"\",\n  \"dateReleased\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_saved_query_for_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/saved/query/for/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "saved",
            "query",
            "for",
            "organization"
          ]
        },
        "description": "Updates an existing discover saved query for a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"end\": \"\",\n  \"name\": \"\",\n  \"query\": \"\",\n  \"range\": \"\",\n  \"start\": \"\",\n  \"yAxis\": \"\",\n  \"fields\": \"\",\n  \"display\": \"\",\n  \"orderby\": \"\",\n  \"interval\": \"\",\n  \"projects\": \"\",\n  \"query_id\": 0,\n  \"topEvents\": 0,\n  \"environment\": \"\",\n  \"queryDataset\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_symbol_source_settings",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/symbol/source/settings",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "symbol",
            "source",
            "settings"
          ]
        },
        "description": "Updates an existing custom symbol source's settings in a sentry project, such as its type, name, layout preferences, and connection parameters.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"id\": \"\",\n  \"url\": \"\",\n  \"name\": \"\",\n  \"type\": \"\",\n  \"bucket\": \"\",\n  \"prefix\": \"\",\n  \"region\": \"\",\n  \"password\": \"\",\n  \"username\": \"\",\n  \"access_key\": \"\",\n  \"secret_key\": \"\",\n  \"private_key\": \"\",\n  \"client_email\": \"\",\n  \"layout__type\": \"\",\n  \"layout__casing\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_team_information_by_organization_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/team/information/by/organization/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "team",
            "information",
            "by",
            "organization",
            "id"
          ]
        },
        "description": "Updates the slug for an existing team within a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"slug\": \"\",\n  \"team_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_user_email",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/user/email",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "user",
            "email"
          ]
        },
        "description": "Updates 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.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"email\": \"\",\n  \"user_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_update_webhook_configuration_xp",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/update/webhook/configuration/xp",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "update",
            "webhook",
            "configuration",
            "xp"
          ]
        },
        "description": "Updates an existing sentry service hook's target url and subscribed event types for a given project and organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"events\": \"\",\n  \"hook_id\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_upload_dsyms_file_to_project",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/dsyms/file/to/project",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "dsyms",
            "file",
            "to",
            "project"
          ]
        },
        "description": "Uploads a dsym (debug symbols) zip archive, containing an apple .dsym folder, to the specified sentry project for symbolicating crash reports from apple platforms.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"file\": {},\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_upload_file_to_project_release",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/file/to/project/release",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "file",
            "to",
            "project",
            "release"
          ]
        },
        "description": "Uploads a file to a sentry project release, for an existing organization, project, and version; uses `multipart/form-data` and the region-specific sentry domain.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dist\": \"\",\n  \"file\": {},\n  \"name\": \"\",\n  \"header\": \"\",\n  \"version\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_upload_release_file_to_organization",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/upload/release/file/to/organization",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "upload",
            "release",
            "file",
            "to",
            "organization"
          ]
        },
        "description": "Uploads a new file, such as a source map or debug information, to an existing release version in a sentry organization.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"dist\": \"\",\n  \"file\": {},\n  \"name\": \"\",\n  \"header\": \"\",\n  \"version\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "sentry_view_organization_notification_actions",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/view/organization/notification/actions",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "view",
            "organization",
            "notification",
            "actions"
          ]
        },
        "description": "Retrieves 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'.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"project\": \"\",\n  \"triggerType\": \"\",\n  \"project_id_or_slug\": \"\",\n  \"organization_id_or_slug\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}