Api Documentation

Clubs

Clubs are the teams that can play matches against eachother. The logo field contains an ID that can be used in the FILES endpoint to obtain the actual logo. Please refer to the FILES endpoint documentation for more information. Updating club logos can also be done through the FILES endpoint.
Retrieves a collection of clubs and rudimentary information about them.
Retrieves a single club and rudimentary information about it.
Creates a club. Only available to API keys without user authentication.
Updates a club. Only available to API keys without user authentication.
Deletes a single club. Only available to API keys without user authentication.
Json
XML
PUT https://api.bundeling.com/V2/clubs

Parameters

Url

NameDescriptionType
uuidA unique identifier used to identify a clubstring

Body

NameDescriptionTypeNillable
nameThe name of the club.stringfalse
external_referenceReference for linking to external systems.stringfalse

Example request

Headers

Content-Type:application/json
Api-Key:RAegSX8yZfEbqSPM

Body

{
    "name": "Team Bundeling",
    "external_reference": "123908"
}

Example response

{
    "uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
    "name": "Team Bundeling",
    "logo": "LCJwYeyJjbGllbnQiOjEwXRoIjoidXNlcnNcLzE1XC91...",
    "external_reference": "123908",
    "creationdate": "2024-01-20T00:00:00+0100",
    "lastupdate": "2024-01-20T00:00:00+0100"
}