Skip to main content

Show a Specific Event

This endpoint shows the contents in the feed relative to this event for the logged user. The event must have show_on_feed = false for the current user.

info

This operation requires being subscribed to the event.

HTTP Request

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

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this event

Example Request


const headers = {
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone