Skip to main content

Going to Event

This endpoint allows the user to specify that he will be going to the event.

info

This operation requires authentication and that the user is subscribed to the event.

HTTP Request

POST /api/v2/event/{id}/going/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this event

Example Request

const inputBody = 'null';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

fetch('/api/v2/event/{id}/going/',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone