Skip to main content
GET
/
api
/
v3
/
sites
/
{site_uuid}
/
teams
Get all teams with access to a site
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites/{site_uuid}/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
      "name": "Miss Pearl Hauck",
      "type": "Other",
      "email": "[email protected]",
      "access": {
        "is_owner": false,
        "data_access": false,
        "data_access_expires_at": null,
        "can_access_all_assets": false,
        "created_at": null,
        "updated_at": null
      },
      "created_at": "2025-11-19T15:28:22.000000Z",
      "updated_at": "2025-11-19T15:28:22.000000Z"
    },
    {
      "uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
      "name": "Oswald Koch",
      "type": "Other",
      "email": "[email protected]",
      "access": {
        "is_owner": false,
        "data_access": false,
        "data_access_expires_at": null,
        "can_access_all_assets": false,
        "created_at": null,
        "updated_at": null
      },
      "created_at": "2025-11-19T15:28:22.000000Z",
      "updated_at": "2025-11-19T15:28:22.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Path Parameters

site_uuid
string
required

Response

200 - application/json
data
object[]
Example:
[
{
"uuid": "bfc53181-d647-36b2-9080-f9c2b76006f4",
"name": "Miss Pearl Hauck",
"type": "Other",
"email": "[email protected]",
"access": {
"is_owner": false,
"data_access": false,
"data_access_expires_at": null,
"can_access_all_assets": false,
"created_at": null,
"updated_at": null
},
"created_at": "2025-11-19T15:28:22.000000Z",
"updated_at": "2025-11-19T15:28:22.000000Z"
},
{
"uuid": "665a39c0-48af-31f1-a546-aa4f41372488",
"name": "Oswald Koch",
"type": "Other",
"email": "[email protected]",
"access": {
"is_owner": false,
"data_access": false,
"data_access_expires_at": null,
"can_access_all_assets": false,
"created_at": null,
"updated_at": null
},
"created_at": "2025-11-19T15:28:22.000000Z",
"updated_at": "2025-11-19T15:28:22.000000Z"
}
]