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

Event attendance

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

Parameters

Url

NameDescriptionType
idUnique integer used to identity a user attends event record.int

Body

NameDescriptionTypeNillable
certainDefines if a user is certainly coming. When set to true, it is impossible to cancel without contacting your Bundeling administrator.booleanfalse
guestsThe number of guests a user will be bringing.intfalse
notesOptional additional notes.stringfalse

Example request

Headers

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

Body

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

Example response

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