cURL
curl --request GET \ --url https://console.vast.ai/api/v0/team/members/ \ --header 'Authorization: Bearer <token>'
[ { "id": 123, "username": "johndoe", "email": "[email protected]", "fullname": "John Doe", "roles": [ "admin", "member" ] } ]
Retrieve a list of team members associated with the authenticated user’s team.
CLI Usage: vastai show team-members
vastai show team-members
API key must be provided in the Authorization header
Success response
User ID
123
Username of the team member
"johndoe"
Email of the team member
"[email protected]"
Full name of the team member
"John Doe"
Roles assigned to the team member
["admin", "member"]