Teams are the top-level organisational unit in Chatzuri. All agents, members, and API keys belong to a team.
Every API request is scoped to a team using your team's API key. You can find your API key in the team settings under API Keys.
API Key
Each team has a unique API key used to authenticate all requests.
Agents
Agents belong to a team. A team can have multiple agents.
Members
Invite team members with owner, admin, or member roles.
Settings
Configure team name, URL slug, and integrations per team.
All team-scoped API requests require your team API key in the Authorization header:
Authorization: Bearer <Your-Team-API-Key>| Method | Endpoint | Description |
|---|---|---|
| POST | /api/v1/create-team | Create a new team |
| GET | /api/v1/get-teams | List all teams for the authenticated user |
| PUT | /api/v1/update-team | Update team name, description, or URL |
| DELETE | /api/v1/delete-team | Delete a team and all its data |