v1

latestOpenAPI 3.0.02026-07-24900287.5 KB
Teams

Create a new Team

This API creates a new team in the account.

post/teams

Request body

namestring required

Full name of the team

slugstring required

Team abbreviation or short name

sport_idstring uuid required

Example request

{
  "name": "Local Sports Team",
  "slug": "LST",
  "sport_id": "29d390a2-9900-11e3-b9b6-22000af8166b"
}

Response

Team Created

idstring required
namestring required

Full name of the team

slugstring required

Team abbreviation or short name

sport_idstring uuid required
homeinteger
sport_namestring
created_atstring required
modified_atstring required
is_defaultboolean
is_additionalboolean
acceleration_rhie_bandsstring required
velocity_rhie_bandsstring required
rhie_effort_recoverynumber required
rhie_effort_countinteger required
player_load_dwell_timenumber required
heart_rate_dwell_timenumber required
acceleration_dwell_timenumber required
velocity_dwell_timenumber required
secondary_colourstring
primary_colourstring
logostring
logo_urlstring
tag_liststring[]

Example response

{
  "name": "Local Sports Team",
  "slug": "LST",
  "sport_id": "29d390a2-9900-11e3-b9b6-22000af8166b",
  "created_at": "2023-10-31 23:59:59",
  "modified_at": "2023-10-31 23:59:59",
  "acceleration_rhie_bands": "1,2,7,8",
  "velocity_rhie_bands": "4,5,6",
  "rhie_effort_recovery": 21,
  "rhie_effort_count": 3,
  "player_load_dwell_time": 0.6,
  "heart_rate_dwell_time": 1,
  "acceleration_dwell_time": 0.2,
  "velocity_dwell_time": 0.6,
  "settings": [
    {
      "created_at": "2023-10-31 23:59:59",
      "modified_at": "2023-10-31 23:59:59"
    }
  ]
}