Skip to main content

Get Events Created By

This endpoint retrieves the list of all the events created by a specific user.

info

This operation does not require authentication.

HTTP Request

GET /api/v2/event/created/

Parameters

NameInTypeRequiredDescription
created_byqueryintegertrueThe integer value identifying the event creator id
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/created/?created_by={id}',
{
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(Event)falsenoneList of results