Skip to main content

Subscribe Or Accept Invite

This endpoint allows users to subscribe or to accept the invite to join a specific group.

note

By passing the optional param users a group manager is able to subscribe some users to the group.

info

This operation requires authentication. It requires also that the user is the manager of the group if the users param is passed.

HTTP Request

POST /api/v2/group/{id}/subscribe/

Parameters

NameInTypeRequiredDescription
idpathstringtrueA unique integer value identifying this group
usersbodylist(integer)falseList of id of User to subscribe

Example Request

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

fetch('/api/v2/group/{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