Skip to main content
DELETE
/
api
/
v0
/
team
/
members
/
{id}
remove team member
curl --request DELETE \
  --url https://console.vast.ai/api/v0/team/members/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "User removed from the team."
}

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

Path Parameters

id
integer
required

User ID of the team member to remove

Response

Member removed successfully

status
enum<string>
Available options:
success
Example:

"success"

message
string
Example:

"User removed from the team."