GET
/
teams
curl -X GET \
  -H 'Authorization: Bearer $API_KEY' \
  -H 'Accept: application/json' \
  'https://accounts.playbook3d.com/teams'
[
  {
    "id": "41480ee5-14ff-4f9e-89bf-91b0a8e50e77",
    "name": "My Example Team"
  },
  {
    "id": "a13dbeff-de02-49dd-9593-182105d3f71a",
    "name": "Another Team"
  }
]

Headers

x-api-key
string
required

Your API key. This is required by most endpoints to access our API programmatically. You can view your x-api-key using the 'Profile' tab on the website.

Authorization
string
required

Bearer token for authentication (JWT).

Response

200
application/json
Successful response. Returns a JSON array of teams.
id
string

Team's unique ID (UUID).

name
string

Team's name.