Skip to main content

Invite Users Or Accept Users

This endpoint allows the manager to invite new users to join the event or accept any requests to join the event.

info

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

HTTP Request

POST /api/v2/event/{id}/invite/

Parameters

NameInTypeRequiredDescription
idpathintegertrueA unique integer value identifying this event
usersbodylist(integer)trueList of id of User to invite or to accept

Example Request

const inputBody = '{
"users": ["integer"]
}';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};

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

Responses

StatusMeaningDescriptionSchema
204No ContentResponse status codeNone