Skip to main content
GET
/
api
/
v3
/
teams
List teams
curl --request GET \
  --url https://app.plugchoice.com/api/v3/teams \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "uuid": "445bd3f6-8f2c-38cb-aa04-2f4e1edb32bb",
      "id": 1,
      "name": "Jazlyn Keebler",
      "slug": "jazlyn-keebler",
      "email": "[email protected]",
      "created_at": "2026-01-10T01:14:33.000000Z",
      "updated_at": "2026-01-10T01:14:33.000000Z"
    },
    {
      "uuid": "013e1265-7fdf-327c-9ed4-fc05e74df42b",
      "id": 2,
      "name": "Myrtis Tromp",
      "slug": "myrtis-tromp",
      "email": "[email protected]",
      "created_at": "2026-01-10T01:14:33.000000Z",
      "updated_at": "2026-01-10T01:14:33.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Response

200 - application/json
data
object[]
Example:
[
{
"uuid": "445bd3f6-8f2c-38cb-aa04-2f4e1edb32bb",
"id": 1,
"name": "Jazlyn Keebler",
"slug": "jazlyn-keebler",
"email": "[email protected]",
"created_at": "2026-01-10T01:14:33.000000Z",
"updated_at": "2026-01-10T01:14:33.000000Z"
},
{
"uuid": "013e1265-7fdf-327c-9ed4-fc05e74df42b",
"id": 2,
"name": "Myrtis Tromp",
"slug": "myrtis-tromp",
"email": "[email protected]",
"created_at": "2026-01-10T01:14:33.000000Z",
"updated_at": "2026-01-10T01:14:33.000000Z"
}
]