resetAuthorizationCode method
- ResetAuthorizationCodeRequest request,
- String registration, {
- String? $fields,
Resets the authorization code of the Registration
to a new random
string.
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
- The metadata request object.
Request parameters:
registration
- Required. The name of the Registration
whose
authorization code is being reset, 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> resetAuthorizationCode(
ResetAuthorizationCodeRequest request,
core.String registration, {
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_ = 'v1/' +
core.Uri.encodeFull('$registration') +
':resetAuthorizationCode';
final response_ = await _requester.request(
url_,
'POST',
body: body_,
queryParams: queryParams_,
);
return AuthorizationCode.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}