For the complete documentation index, see llms.txt. This page is also available as Markdown.

GET superteams

GET /superteams

Returns the Superteams configured in the exercise and the teams assigned to each Superteam.

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

empty

Response

[
  {
    "hash": "8jO2",
    "name": "Super Team 01",
    "meta": "{\"color\":\"378ADD\"}",
    "teams": [
      3466414,
      3466432,
      3466450,
      3466468,
      3466486,
      3466504,
      3466522,
      3466540,
      3466558,
      3466576
    ]
  },
  {
    "hash": "51E0",
    "name": "Super Team 02",
    "meta": "{\"color\":\"1D9E75\"}",
    "teams": [
      3466594,
      3466612,
      3466630,
      3466648,
      3466666,
      3466684,
      3466702,
      3466720,
      3466738,
      3466756
    ]
  }
]

Response fields

Field

Type

Description

hash

string

Unique identifier for the Superteam. This value is used when referencing a Super Team elsewhere in the API.

name

string

Display name of the Superteam.

meta

string

JSON-encoded metadata associated with the Superteam - at the moment, colour

teams

array

List of team IDs belonging to the Superteam.

Last updated

Was this helpful?