bulkEditAssignedUserRoles method

Future<BulkEditAssignedUserRolesResponse> bulkEditAssignedUserRoles(
  1. BulkEditAssignedUserRolesRequest request,
  2. String userId, {
  3. String? $fields,
})

Bulk edits user roles for a user.

The operation will delete the assigned user roles provided in BulkEditAssignedUserRolesRequest.deletedAssignedUserRoles and then assign the user roles provided in BulkEditAssignedUserRolesRequest.createdAssignedUserRoles. This method has unique authentication requirements. Read the prerequisites in our [Managing Users guide](/display-video/api/guides/users/overview#prerequisites) before using this method. The "Try this method" feature does not work for this method.

request - The metadata request object.

Request parameters:

userId - Required. The ID of the user to which the assigned user roles belong. Value must have pattern ^\[^/\]+$.

$fields - Selector specifying which fields to include in a partial response.

Completes with a BulkEditAssignedUserRolesResponse.

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<BulkEditAssignedUserRolesResponse> bulkEditAssignedUserRoles(
  BulkEditAssignedUserRolesRequest request,
  core.String userId, {
  core.String? $fields,
}) async {
  final body_ = convert.json.encode(request);
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v2/users/' +
      core.Uri.encodeFull('$userId') +
      ':bulkEditAssignedUserRoles';

  final response_ = await _requester.request(
    url_,
    'POST',
    body: body_,
    queryParams: queryParams_,
  );
  return BulkEditAssignedUserRolesResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}