modifyAuthCode() - Update Transfer Code
It is used to change the transfer code of the domain name.
public function modifyAuthCode($params=[],$authCode=''){
$domain = idn_to_ascii($params["domain"],0,INTL_IDNA_VARIANT_UTS46);
$modify = $this->api->modify_AuthCode($domain,$authCode);
if(!$modify){
$this->error = $this->api->error;
return false;
}
return true;
}
Parameters;
- $params Provides the value of [options] index in the $order variable in the class.
- $authCode Transfer code
Retrieval Value;
Boolean (true or false)