DomainsSendEPP

Send EPP code for .COM, .NET, .INFO, .BIZ, .ORG domain to administrate contact for domain.

Input

Parameter Value Example value
domain Domain name without extension.
Eg "versio.uk" you enter "versio".
Parameter is required
versio
tld Domain name extension.
Eg "versio.net" you enter "net".
Only .COM, .NET, .INFO, .BIZ, .ORG.
Parameter is required
net


Output

Parameter Value Example value
success command executed successfully 0 = error
1 = command executed successfully
command_response_message Error
Only sent when value parameter success = 0
incorrect password


Example

<? require("class_versio_api.php"); unset($command); $command = array( "command" => "DomainsSendEPP", "domain" => "domain", "tld" => "ext" ); $api = new Versio_api(); $versio = $api->api_send( $command ); IF($versio['success']==0) { echo("Error occured. Error code: ".$versio['command_response_code'].". Error message: ".$versio['command_response_message'].""); } else { echo("EPP code succesfully sent."); } ?>