GET
/
api
/
v0
/
team
/
members
/
show team members
curl --request GET \
  --url https://console.vast.ai/api/v0/team/members/ \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "username": "johndoe",
    "email": "johndoe@example.com",
    "roles": [
      "admin",
      "member"
    ]
  }
]

Authorizations

Authorization
string
header
required

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

Response

Success response

id
integer

User ID

Example:

123

username
string

Username of the team member

Example:

"johndoe"

email
string

Email of the team member

Example:

"johndoe@example.com"

roles
string[]

Roles assigned to the team member

Example:
["admin", "member"]