DomainInternalTransfer
From NETIM
Release | Runtime |
---|---|
API >= 2.0 | Synchronous |
Description
Requests the internal transfer of a domain name from one Netim account to another.
StructOperationResponse domainInternalTransfer(string idSession, string domain, string authID, string idAdmin, string idTech, string idBilling, string ns1, string ns2, string ns3, string ns4, string ns5)
Parameters
Format | Variable | Description | Notes |
---|---|---|---|
string (32) | idSession | Session ID | |
string (255) | domain | Domain name to be transferred | |
string (64) | authID | Autorisation code / EPP code | Optional, if applicable |
string (12) | idAdmin | ID of the administrative contact | with "isOwner=0" |
string (12) | idTech | ID of the technical contact | with "isOwner=0" |
string (12) | idBilling | ID of the billing contact | with "isOwner=0" |
string (255) | ns1 | Name server DNS 1 | |
string (255) | ns2 | Name server DNS 2 | |
string (255) | ns3 | Name server DNS 3 | |
string (255) | ns4 | Name server DNS 4 | |
string (255) | ns5 | Name server DNS 5 |
Return
A structure StructOperationResponse
Notes
If the authorization code is omitted, confirmations will be requested by e-mail to the losing and the gaining account.
Examples
PHP
<?php $clientSOAP = new SoapClient("http://URL.wsdl"); try { $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); $StructOperationResponse = $clientSOAP->domainInternalTransfer($idSession, "netim.com", "98smGTHfdsHnj", "IDADM", "IDTEC", "IDBIL", "ns1.netim.com", "ns2.netim.com", "", "", ""); print_r($StructOperationResponse); } catch(SoapFault $fault) { echo "Exception : " .$fault->getMessage(). "\n"; } if(isset($idSession)) { $clientSOAP->sessionClose($idSession); } ?>