Commands
team
Manage Sentry teams.
Commands
sentry team list
List teams in an organization.
# Auto-detect organization or list allsentry team list
# List teams in a specific organizationsentry team list <org-slug>
# Limit resultssentry team list --limit 10Arguments:
| Argument | Description |
|---|---|
[org-slug] | Optional organization slug to filter by |
Options:
| Option | Description |
|---|---|
-n, --limit <number> | Maximum number of teams to list (default: 30) |
--json | Output as JSON |
Example output:
ORG SLUG NAME MEMBERSmy-org backend Backend Team 8my-org frontend Frontend Team 5my-org mobile Mobile Team 3JSON output:
sentry team list --json[ { "id": "100", "slug": "backend", "name": "Backend Team", "memberCount": 8 }]