retrieveAuthorizationCode method
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. Domains that have the REQUIRE_PUSH_TRANSFER
property in the list of domain_properties
don't support authorization
codes and must use the InitiatePushTransfer
method to initiate the
process to transfer the domain to a different registrar.
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_ = 'v1/' +
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>);
}