Dash0 Acquires Lumigo to Expand Agentic Observability Across AWS and Serverless

Feb 27, 2026

Support for Managing Members and Teams via API, Go SDK, and CLI

You can now programmatically automate and manage your organization's members and teams using our full suite of interfaces.

We have extended the following tools with comprehensive management capabilities for members and teams:

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

sh
1234567891011
# List all teams
dash0 teams -X list
# Create a new team
dash0 teams -X create --name "Frontend Developers"
# Add members to a team
dash0 teams -X add-members <teamId> <memberIdOrEmail> <memberIdOrEmail> <memberIdOrEmail>
# Delete a team
dash0 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

sh
12345678
# List all members
dash0 members -X list
# Invite a new user
dash0 members -X invite "user@example.com"
# Invite a new user
dash0 members -X remove "user@example.com"

The members command is currently experimental (like all recently introduced commands), and therefore requires the –X/-–experimental flag.