Warning: API Version 1 is deprecated. Please use API Version 2.
Api Documentation

Match attendance

Retrieves a collection of attendance information.
Allows a user to let others know he/she will be attending a match.
Allows a user to let others know he/she will be attending a match.
Deletes a users attendance information.
Json
XML
POST https://api.bundeling.com/V1/user_attends_match

Parameters

Body

NameDescriptionTypeNillableRequired
match_idUnique identifier of the match the user will attendintfalsetrue
user_idUnique identifier of a user. Only required when using an API key without user authentication.intfalsefalse
certainDefines if a user is certainly coming. When set to true, it is impossible to cancel without contacting your Bundeling administrator.booleanfalsetrue
guestsThe number of guests a user will be bringing.intfalsefalse
notesOptional additional notes.stringfalsefalse

Example request

Headers

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

Body

{
    "match_id": 12,
    "user_id": 106,
    "certain": true,
    "guests": 1,
    "notes": "I will be bringing my wife"
}

Example response

{
    "id": 194,
    "match_id": 12,
    "user_id": 106,
    "certain": true,
    "guests": 1,
    "notes": "I will be bringing my wife"
}