Account

Account endpoints expose user-level details and associated teams.

1interface UserAccount {
2 email: string;
3 first_name: string;
4 last_name: string;
5 created_at: string;
6 teams: number;
7}
8
9interface Team {
10 uuid: string;
11 name: string;
12 plan: string;
13 voice_limit: number;
14 units: string;
15 rate: number;
16 current_usage: number;
17}