Skip to main content
GET
/
v3
/
sites
/
{site}
/
teams
/
{team}
Get Team Access
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site}/teams/{team} \
  --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>"
}

Documentation Index

Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt

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

Returns a specific team’s access details for the specified location. Returns a 404 error if the team does not have access to the location.
site
string
required
The UUID of the location.
team
string
required
The UUID of the team.

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.