Skip to main content

Get User Events

This endpoint return the list of events the user is subscribed to.

info

This operation does not require authentication.

HTTP Request

GET /api/v2/user/{id}/events/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this user

Example Request

const headers = {
'Accept':'application/json'
};

fetch('/api/v2/user/{id}/events/',
{
method: 'GET',

headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});

Responses

StatusMeaningDescriptionSchema
200OKResponse status codelist(Event)