Skip to main content

Get Event Not Going Users

This endpoint retrieves the list of all the users not going to the event identified by {id}.

info

This operation does not require authentication and subscription if the event is public.

This operation requires authentication and being subscribed to the event if the event is private.

HTTP Request

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

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this event
limitqueryintegerfalseNumber of results to return per page
offsetqueryintegerfalseThe initial index from which to return the results

Example Request

const headers = {
'Accept':'application/json',
'Authorization: Bearer <token>'
};

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

Responses

StatusMeaningDescriptionSchema
200OKResponse status codeInline

Response Schema

Status Code 200

NameTypeRequiredRestrictionsDescription
» countintegerfalsenoneTotal results count
» nextstring(uri)¦nullfalsenoneNext page url
» previousstring(uri)¦nullfalsenonePrevious page url
» resultslist(User)falsenoneList of results