Team
Manage and inspect information about your Studio teams.
studio team <subcommand>
Use these commands to interact with your Studio teams, including listing teams associated with your accounts, creating new teams, and adding members to teams.
ls [identifier]
List all of your teams and underlying projects tied to your Studio account, optionally, passing the team ID.
Argument | Type | Default | Description |
---|---|---|---|
[identifier] | string | -- | (Optional) the team's ID, if known. |
Examples
ls
studio team ls
The output might resemble the snippet below. Note the distinction between personal and non-personal teams where the personal
field is either 1
or 0
, respectively.
[
{
"id": "ed43dac0-70fb-4c76-873b-5d4a4582c5ee",
"name": "tableland_user",
"slug": "tableland_user",
"personal": 1,
"projects": [
{
"id": "eac4b0f2-ab4d-41ec-9789-19f0a4905615",
"name": "starter",
"slug": "starter",
"description": "A starter project."
}
]
},
{
"id": "65048d24-96a8-49b4-8b84-28b636383c87",
"name": "collabs",
"slug": "collabs",
"personal": 0,
"projects": []
}
]
This example shows there is a personal team with a starter
project, and a non-personal team called collabs
with no projects.