Skip to main content
DELETE
/
teams
/
{team_token}
Delete team
curl --request DELETE \
  --url https://api.vantage.sh/v2/teams/{team_token} \
  --header 'Authorization: Bearer <token>'
{
  "token": "<string>",
  "name": "Cost Savers",
  "description": "The Team that saves costs",
  "workspace_tokens": [
    ""
  ],
  "user_emails": [
    ""
  ],
  "user_tokens": [
    ""
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

team_token
string
required

Response

Team model

token
string
name
string

The name of the Team.

Example:

"Cost Savers"

description
string

The description of the Team.

Example:

"The Team that saves costs"

workspace_tokens
string[]

The tokens for any Workspaces that the Team belongs to

user_emails
string[]

The email addresses for Users that belong to the Team

user_tokens
string[]

The tokens for Users that belong to the Team