Skip to main content

Get Event Users Waiting Approval

This endpoint retrieves the list of all the users waiting to be subscribed to the event identified by {id}.

info

This operation requires authentication and that the user is the manager of the event.

HTTP Request

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

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}/request_subscribe/',
{
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