Warning: API Version 1 is deprecated. Please use API Version 2.
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/V1/clubs

Parameters

Url

NameDescriptionType
idA unique integer used to identify a clubint

Body

NameDescriptionTypeNillable
nameThe name of the club.stringfalse

Example request

Headers

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

Body

{
    "name": "Team Bundeling"
}

Example response

{
    "id": 14,
    "name": "Team Bundeling",
    "logo": "LCJwYeyJjbGllbnQiOjEwXRoIjoidXNlcnNcLzE1XC91..."
}