Api Documentation

Teams

Teams are used to divide your network into groups. 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 team logos can also be done through the FILES endpoint.
Retrieves a collection of teams and rudimentary information about them.
Retrieves a single team and rudimentary information about it.
Creates a team. Only available to API keys without user authentication.
Updates a team. Only available to API keys without user authentication.
Deletes a single team. Only available to API keys without user authentication.
Json
XML
PUT https://api.bundeling.com/V2/teams

Parameters

Url

NameDescriptionType
uuidA unique identifier used to identify a teamstring

Body

NameDescriptionTypeNillable
nameThe name of the team.stringfalse

Example request

Headers

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

Body

{
    "name": "Team Bundeling"
}

Example response

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