Login

Login (Beach)

Authenticates a user and returns a Bearer token plus the default tournament selection and a list of available tournaments.

post/volley/login

Request body

usernamestring required
passwordstring required

The account password.

device_namestring
emailstring required

The user’s email address.

Example request

{
  "username": "architecto",
  "password": "secret",
  "device_name": "architecto",
  "email": "scorer@example.com"
}

Response

success

loginstring

Login status — eg: OK

tokenstring

Bearer token to use in Authorization header (prefix with Bearer ) — eg: 14|bGSN...

tournamentstring

The currently selected tournament identifier (can be a combined hash) — eg: abvl-vvv-damen---1.ll-hochst---hohenems2026-06-012025w#...

Example response

{
  "login": "OK",
  "token": "14|bGSNKd4eFZ9TOpD31OpXSagNTxAmVpvwFDtxNOsc5b9b388e",
  "tournament": "abvl-vvv-damen---1.ll-hochst---hohenems2026-06-012025w#abvl-v-manner---1.ll-wolfurt-1-vs.-vc-dornbirn-12925-06-182025m",
  "tournament_info": [
    {
      "id": "abvl-vvv-damen---1.ll-hochst---hohenems2026-06-012025w",
      "name": "ABVL VVV Damen - 1.LL Höchst - Hohenems 2026-06-01 - W"
    },
    {
      "id": "abvl-v-manner---1.ll-wolfurt-1-vs.-vc-dornbirn-12925-06-182025m",
      "name": "ABVL V Männer - 1.LL Wolfurt 1 vs. VC Dornbirn 1 2925-06-18 - M"
    }
  ]
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.