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.
Json
XML
PUT https://api.bundeling.com/V2/user_attends_match

Parameters

Url

NameDescriptionType
uuidA unique identifier used to identify a user attends match recordstring

Body

NameDescriptionTypeNillable
certainDefines if a user is certainly coming. When set to 1, it is impossible to cancel without contacting your Bundeling administrator. When set to -1 the user is not attending.intfalse
guestsThe number of guests a user will be bringing.intfalse
notesOptional additional notes.stringfalse
form_data_uuidConnected form by using the unique identifier.stringfalse
external_referenceReference for linking to external systems.stringfalse

Example request

Headers

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

Body

{
    "certain": true,
    "guests": 1,
    "notes": "I will be bringing my wife",
    "form_data_uuid": "5EE661BC5C7C4C46802E178A1C055C7B",
    "external_reference": "123908"
}

Example response

{
    "uuid": "eeb763c41c054dcc8f6d9362f24ee9b2",
    "match_uuid": "d7743aaf53224e279853c7d0c1dbfb3a",
    "user_uuid": "8e09c4749b234633a7319148aac8cb81",
    "certain": 1,
    "guests": 1,
    "notes": "I will be bringing my wife",
    "external_reference": "123908",
    "creationdate": "2024-01-20T00:00:00+0100",
    "lastupdate": "2024-01-20T00:00:00+0100"
}