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
POST https://api.bundeling.com/V1/user_attends_event

Parameters

Body

NameDescriptionTypeNillableRequired
event_idUnique identifier of the event 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

{
    "event_id": 12,
    "user_id": 106,
    "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"
}