Indoor Updates

Team Updates (full or delta)

Returns a list of Teams, either all available or only those modified since a given timestamp.

get/web/teams

Query parameters

tsinteger

Unix timestamp (in seconds). Filters teams updated since this time.

Example:1759329493

Unix timestamp (in seconds). Filters teams updated since this time.

allboolean

Return all teams ignoring ts. Accepted values: true, false, 1, 0, yes, no.

Example:true

Return all teams ignoring ts. Accepted values: true, false, 1, 0, yes, no.

club_idstring

Filter by club ID.

Example:ovv-123

Filter by club ID.

Response

idinteger
namestring
short_namestring
genderstring
notestring
code_flaginteger
slugstring
codestring
club_idinteger
person_contact_idinteger
address_idinteger
season_idinteger
logo_urlstring
created_atstring
updated_atstring
deleted_atstring

Example response

[
  {
    "id": 1,
    "name": "Team Name",
    "short_name": "TN",
    "gender": "W",
    "note": "Some note",
    "code_flag": 0,
    "slug": "team-name",
    "code": "team-name-seasonname",
    "club_id": 10,
    "person_contact_id": 20,
    "address_id": 30,
    "season_id": 5,
    "logo_url": "http://localhost:8181/api/public/storage/indoor/2025/2026I/teams/47473/badge.png",
    "created_at": "2023-01-01 09:00:00",
    "updated_at": "2025-10-10 12:00:00",
    "deleted_at": null
  }
]

Changes

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