accept method
Accepts an invitation, removing it and adding the invited user to the teachers or students (as appropriate) of the specified course.
Only the invited user may accept an invitation. This method returns the
following error codes: * PERMISSION_DENIED
if the requesting user is not
permitted to accept the requested invitation or for access errors. *
FAILED_PRECONDITION
for the following request errors: *
CourseMemberLimitReached * CourseNotModifiable * CourseTeacherLimitReached
- UserGroupsMembershipLimitReached *
NOT_FOUND
if no invitation exists with the requested ID.
Request parameters:
id
- Identifier of the invitation to accept.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a Empty.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http.Client
completes with an error when making a REST call,
this method will complete with the same error.
Implementation
async.Future<Empty> accept(
core.String id, {
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/invitations/' + commons.escapeVariable('$id') + ':accept';
final response_ = await _requester.request(
url_,
'POST',
queryParams: queryParams_,
);
return Empty.fromJson(response_ as core.Map<core.String, core.dynamic>);
}