arcanon

Teams

Organize members into teams for collaboration.

Overview

Teams are groups of org members. Use them to organize who works on what — team members can be filtered in the Architecture view and receive notifications for their team's services (coming soon).

Teams settings page with 3 teams

Creating a team

  1. Go to Settings > Teams
  2. Click Create team
  3. Enter a team name (3–50 characters) and optional description
  4. Click Create

A URL-safe slug is generated automatically from the team name.

Managing members

Click a team row to expand it. You'll see the current members list.

  • Add member — Select an org member from the dropdown and click Add
  • Remove member — Click the trash icon next to a member

All org members are available to add. A member can belong to multiple teams.

Deleting a team

Click the trash icon on the team row. A confirmation dialog will appear. Deleting a team does not remove its members from the org — it only dissolves the team grouping.

Team filter in Architecture

The Architecture view's + Filter menu includes a Team option. Selecting a team filters the graph to show only services owned by that team.

API

Teams are managed via REST API:

GET    /api/v1/orgs/{orgId}/teams
POST   /api/v1/orgs/{orgId}/teams
PUT    /api/v1/orgs/{orgId}/teams/{teamId}
DELETE /api/v1/orgs/{orgId}/teams/{teamId}
POST   /api/v1/orgs/{orgId}/teams/{teamId}/members
DELETE /api/v1/orgs/{orgId}/teams/{teamId}/members/{userId}

On this page