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
Name | In | Type | Required | Description |
---|---|---|---|---|
id | path | integer | true | A unique integer value identifying this event |
Example Request
- JavaScript
- Bash
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);
});
# You can also use wget
curl -X POST /api/v2/event/{id}/show/ \
-H 'Accept: application/json' \
-H 'Authorization: Bearer {access_token}' \
Responses
Status | Meaning | Description | Schema |
---|---|---|---|
204 | No Content | Response status code | None |