We have extended the following tools with comprehensive management capabilities for members and teams:
- The official Dash0 API
- The Dash0 Go API Client
- The dash0 CLI (Command Line Interface)
Teams Management
The core team API endpoints, starting with /teams, cover operations like:
- Retrieving a list of all teams in your organization.
- Creating new teams with specific access configurations.
- Adding and removing members from teams.
- Fetching details for a single team.
- Updating existing team properties, such as the name.
- Deleting teams.
CLI Snippets
1234567891011# List all teamsdash0 teams -X list# Create a new teamdash0 teams -X create --name "Frontend Developers"# Add members to a teamdash0 teams -X add-members <teamId> <memberIdOrEmail> <memberIdOrEmail> <memberIdOrEmail># Delete a teamdash0 teams -X delete <teamId>
The teams command is currently experimental (like all recently introduced commands), and therefore requires the –X/-–experimental flag.
Members Management
The API endpoints under /members let you manage individuals in your organization:
- Listing all members in the organization.
- Inviting new users to the organization.
- Managing member roles and permissions.
CLI Snippets
12345678# List all membersdash0 members -X list# Invite a new userdash0 members -X invite "user@example.com"# Invite a new userdash0 members -X remove "user@example.com"
The members command is currently experimental (like all recently introduced commands), and therefore requires the –X/-–experimental flag.