Account Teams

GET https://app.resemble.ai/api/v2/account/teams

1{
2 "success": true,
3 "items": [
4 {
5 "uuid": "TEAM_UUID",
6 "name": "Production",
7 "plan": "Business",
8 "voice_limit": 50,
9 "units": "seconds",
10 "rate": 0.0,
11 "current_usage": 12345
12 }
13 ]
14}
$curl 'https://app.resemble.ai/api/v2/account/teams' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'

Get Team

GET https://app.resemble.ai/api/v2/account/teams/{team_uuid}

1{
2 "success": true,
3 "item": {
4 "uuid": "TEAM_UUID",
5 "name": "Production",
6 "plan": "Business",
7 "voice_limit": 50,
8 "units": "seconds",
9 "rate": 0.0,
10 "current_usage": 12345
11 }
12}
$curl 'https://app.resemble.ai/api/v2/account/teams/TEAM_UUID' \
> -H 'Authorization: Bearer YOUR_API_TOKEN'