DELETE
/
api
/
v0
/
team
/
roles
/
{id}
remove team role
curl --request DELETE \
  --url https://console.vast.ai/api/v0/team/roles/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Role removed from team"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Name of the role to remove

Response

Role removed successfully

status
enum<string>
Available options:
success
Example:

"success"

message
string
Example:

"Role removed from team"