Every Sentry account belongs to at least one organization. An organization owns all of your projects, teams, members, integrations, and billing. From the source model:Documentation Index
Fetch the complete documentation index at: https://mintlify.com/getsentry/sentry/llms.txt
Use this file to discover all available pages before exploring further.
Organization slug
Each organization has a unique slug that appears in Sentry URLs and in API paths:Members and roles
Users join an organization throughOrganizationMember. Each member is assigned a role that determines their permissions across the entire organization.
| Role | Description |
|---|---|
| Member | Can view and interact with issues in projects they have access to. |
| Admin | Can manage team membership and project settings. |
| Manager | Can manage members, teams, and most organization settings. |
| Owner | Full access including billing, SSO configuration, and organization deletion. |
Teams
Teams group members and control which projects they can access. A user gains access to a project by being a member of a team that is assigned to that project.Organization flags
Several organization-wide behaviors are controlled by boolean flags on theOrganization model:
Organization settings
| Section | What you can configure |
|---|---|
| General | Organization name, slug, and default member role |
| Members | Invite members, manage roles, enforce 2FA |
| Teams | Create teams, add members, assign projects |
| Security & Privacy | SSO (SAML, Google Workspace), enhanced privacy, IP allow lists |
| Integrations | GitHub, GitLab, Slack, PagerDuty, and many more |
| Data retention | Event retention period (plan-dependent) |
| Auth tokens | Organization-level API tokens for CI/CD pipelines |
Multi-organization support
A single Sentry user can be a member of multiple organizations. Switching organizations is done through the organization selector in the top-left corner of the UI. In self-hosted installations withSENTRY_SINGLE_ORGANIZATION = True, organization switching is hidden and all users belong to a single organization. Set this to False in sentry.conf.py to enable multi-organization mode.
Inviting members
If
disable_member_invite is enabled on the organization, only managers and owners can send invitations.