GET teams

GET /teams

This endpoint returns all active teams currently defined within the simulation space. The team id is necessary for publishing with other endpoints

There are THREE team types;

  • Session team (S) - this includes everyone in the session

  • Moderator team (M) - this includes facilitators and observers

  • Participant team (T) - the training audience and role-players

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

name

string

Name of the user

age

number

Age of the user

Response

[
  {
    "id": 3440932,
    "name": "S - [email protected] - 2026/02/06 03-32-51"
  },
  {
    "id": 3440935,
    "name": "M - [email protected] - 2026/02/06 03-32-51"
  },
  {
    "id": 3440938,
    "name": "T - West Ham United Team - 2026/02/06 03-32-51"
  },
  {
    "id": 3440941,
    "name": "T - Manchester City Team - 2026/02/06 03-32-51"
  },
  {
    "id": 3440944,
    "name": "T - Arsenal Team - 2026/02/06 03-32-51"
  },
  {
    "id": 3440947,
    "name": "T - Liverpool Team - 2026/02/06 03-32-51"
  },
  {
    "id": 3440950,
    "name": "T - Tottenham Hotspur Team - 2026/02/06 03-32-51"
  },
  {
    "id": 3440953,
    "name": "T - UNREGISTERED - 2026-02-06 15:33:23"
  }
]

The prefix on the "name" indicates the team type. Date-time string is the date & time when the team was created.

Code Snippet

chevron-rightextract the team type, name and creation date from the name list itemhashtag

Last updated

Was this helpful?