DomainsSendEPP_be

Send the EPP code of a .be domain name to the license holder of the domain name. Note : You do NOT have the .be domain name in your account to send the EPP code from a domain to the licensee .DNS.be sent directly EPP code to the licensee. The code is not visible to you or Versio.

Input

Parameter Value Example value
domain Domain name without extension.
Eg "versio.uk" you enter "versio".
Parameter is verplicht
versio
tld Domain name extension.
Eg "versio.uk" you enter "uk".
Mag enkel "be" zijn.
Parameter is verplicht
be


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


Voorbeeld

<? require("class_versio_api.php"); unset($command); $command = array( "command" => "DomainsSendEPP_be", "domain" => "domeinnaam", "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("EEP code sent to licensee."); } ?>