Skip to main content
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",
    "fullname": "John Doe",
    "roles": [
      "admin",
      "member"
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://vastai-80aa3a82-fix-google-validation-docs-404s.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key must be provided in the Authorization header

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"

fullname
string

Full name of the team member

Example:

"John Doe"

roles
string[]

Roles assigned to the team member

Example:
["admin", "member"]