v1

latestOpenAPI 3.0.02026-07-14282938.4 KB
Clubs

Create a new club.

post/clubs

Request body

namestring required
short_namestring
countrystring
citystring
emailstring email

Example request

{
  "name": "demo name",
  "short_name": "DN",
  "country": "NL",
  "city": "Brussels",
  "email": "DN@atletiek.be"
}

Response

The created club.

idstring
namestring
short_namestring
countrystring
citystring
emailstring email

Example response

{
  "id": "ID",
  "name": "demo name",
  "short_name": "DN",
  "country": "NL",
  "city": "Brussels",
  "email": "DN@atletiek.be"
}