Invite Users Or Accept Users
This endpoint allows user creator or managers to invite or accept users to the course.
info
This operation requires the course creator or manager role.
HTTP Request
POST /api/v2/course/{id}/invite/
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| id | path | string | true | A unique integer value identifying this course |
| users | body | list(integer) | true | List of id of User to invite or to accept |
Example Request
- JavaScript
- Bash
const inputBody = '{
"users": ["integer"]
}';
const headers = {
'Content-Type':'application/x-www-form-urlencoded',
'Accept':'application/json',
'Authorization': 'Bearer {access_token}'
};
fetch('/api/v2/course/{id}/invite/',
{
method: 'POST',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
# You can also use wget
curl -X POST /api/v2/course/{id}/invite/ \
-H 'Content-Type: application/x-www-form-urlencoded' \
-H 'Accept: application/json'
-H 'Authorization: Bearer {access_token}'
Responses
| Status | Meaning | Description | Schema |
|---|---|---|---|
| 204 | No Content | Response status code | None |