Skip to main content

Generic Suggested Event Users

This endpoint retrieves a generic list of suggested users to invite to an event being created. The list is relative to the currently logged in user.

info

This operation requires authentication.

HTTP Request

GET /api/v2/event/user/

Parameters

NameInTypeRequiredDescription
searchquerystringfalseA search term. Search in user fields: username and real_name
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/user/',
{
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