Skip to main content
List and inspect the teams in the organization.

describe

baseten org team describe [OPTIONS]
Describe a single team. Pass exactly one of --team-id or --team-name.

Options

-q, --jq
TEXT
Filter JSON output with a jq expression; implies —output json (or jsonl for streamed commands)
-o, --output
TEXT
default:"text"
Output formatOne of: text, json, jsonl, none
--profile
TEXT
Use a specific stored profile for this command, overriding BASETEN_PROFILE and the current profile
--team-id
TEXT
Team ID to describe.Mutually exclusive with other flags in group team-ref.
--team-name
TEXT
Team name to describe.Mutually exclusive with other flags in group team-ref.
-v, --verbose
BOOL
Enable verbose logging

Examples

Describe a team by ID
baseten org team describe --team-id <team-id>
Describe a team by name
baseten org team describe --team-name <team-name>

Filter output with --jq

Print the team’s name
baseten org team describe --team-id <team-id> --jq '.name'

Output

Text mode (--output text): Field-per-line summary of the team. JSON mode (--output json): payload type managementapi.Team.

list

baseten org team list [OPTIONS]
List the teams in the organization.

Options

-q, --jq
TEXT
Filter JSON output with a jq expression; implies —output json (or jsonl for streamed commands)
-o, --output
TEXT
default:"text"
Output formatOne of: text, json, jsonl, none
--profile
TEXT
Use a specific stored profile for this command, overriding BASETEN_PROFILE and the current profile
-v, --verbose
BOOL
Enable verbose logging

Examples

List all teams in the org
baseten org team list

Filter output with --jq

Print just the team names
baseten org team list --jq '.teams[].name'

Output

Text mode (--output text): Table with columns: ID, NAME, DEFAULT, CREATED. When no teams exist, prints “No teams found.” to stderr. JSON mode (--output json): payload type managementapi.Teams.