Skip to main content
GET
/
v3
/
sites
/
{site}
/
teams
List Teams
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site}/teams \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "name": "<string>",
  "email": "<string>",
  "access": {
    "is_owner": true,
    "data_access": true,
    "data_access_expires_at": "<string>",
    "can_access_all_assets": true,
    "created_at": "<string>",
    "updated_at": "<string>"
  },
  "created_at": "<string>",
  "updated_at": "<string>"
}
Returns a list of teams that have access to the specified location, including their access permissions.
site
string
required
The UUID of the location.

Response

uuid
string
The unique UUID of the team.
name
string
The name of the team.
email
string
The email address associated with the team.
access
object
The team’s access permissions for this location.
created_at
string
ISO 8601 timestamp of when the team was created.
updated_at
string
ISO 8601 timestamp of when the team was last updated.