retrieveAuthorizationCode method

Future<AuthorizationCode> retrieveAuthorizationCode(
  1. String registration, {
  2. String? $fields,
})

Gets the authorization code of the Registration for the purpose of transferring the domain to another registrar.

You can call this method only after 60 days have elapsed since the initial domain registration.

Request parameters:

registration - Required. The name of the Registration whose authorization code is being retrieved, in the format projects / * /locations / * /registrations / * . Value must have pattern ^projects/\[^/\]+/locations/\[^/\]+/registrations/\[^/\]+$.

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

Completes with a AuthorizationCode.

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<AuthorizationCode> retrieveAuthorizationCode(
  core.String registration, {
  core.String? $fields,
}) async {
  final _queryParams = <core.String, core.List<core.String>>{
    if ($fields != null) 'fields': [$fields],
  };

  final _url = 'v1beta1/' +
      core.Uri.encodeFull('$registration') +
      ':retrieveAuthorizationCode';

  final _response = await _requester.request(
    _url,
    'GET',
    queryParams: _queryParams,
  );
  return AuthorizationCode.fromJson(
      _response as core.Map<core.String, core.dynamic>);
}