Skip to content
Docs GitHub

team

Manage Sentry teams.

Commands

sentry team list

List teams in an organization.

Terminal window
# Auto-detect organization or list all
sentry team list
# List teams in a specific organization
sentry team list <org-slug>
# Limit results
sentry team list --limit 10

Arguments:

ArgumentDescription
[org-slug]Optional organization slug to filter by

Options:

OptionDescription
-n, --limit <number>Maximum number of teams to list (default: 30)
--jsonOutput as JSON

Example output:

ORG SLUG NAME MEMBERS
my-org backend Backend Team 8
my-org frontend Frontend Team 5
my-org mobile Mobile Team 3

JSON output:

Terminal window
sentry team list --json
[
{
"id": "100",
"slug": "backend",
"name": "Backend Team",
"memberCount": 8
}
]