get method

Future<EnrollmentToken> get(
  1. String name, {
  2. String? $fields,
})

Gets an active, unexpired enrollment token.

A partial view of the enrollment token is returned. Only the following fields are populated: name, expirationTimestamp, allowPersonalUsage, value, qrCode. This method is meant to help manage active enrollment tokens lifecycle. For security reasons, it's recommended to delete active enrollment tokens as soon as they're not intended to be used anymore.

Request parameters:

name - Required. The name of the enrollment token in the form enterprises/{enterpriseId}/enrollmentTokens/{enrollmentTokenId}. Value must have pattern ^enterprises/\[^/\]+/enrollmentTokens/\[^/\]+$.

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

Completes with a EnrollmentToken.

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<EnrollmentToken> get(
  core.String name, {
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final url_ = 'v1/' + core.Uri.encodeFull('$name');

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