Skip to main content

Remove Not Going To Event

This endpoint allows users to remove the choice 'not_going' from the event identified by {id}.

info

This operation requires authentication and that the user will be not going to the event.

HTTP Request

DELETE /api/v2/event/{id}/not_going/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this event

Example Request

const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization: Bearer <token>'
};
fetch('/api/v2/event/{id}/not_going/',
{
method: 'DELETE',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});


Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone