v1

latestOpenAPI 3.1.02026-07-13897404.3 KB
Team

show team members

Retrieve a list of team members associated with the authenticated user's team.

CLI Usage: vastai show team-members

get/api/v0/team/members/

Response

Success response

idinteger

User ID

usernamestring

Username of the team member

emailstring

Email of the team member

fullnamestring

Full name of the team member

rolesstring[]

Roles assigned to the team member

Example response

[
  {
    "id": 123,
    "username": "johndoe",
    "email": "johndoe@example.com",
    "fullname": "John Doe",
    "roles": [
      "admin",
      "member"
    ]
  }
]