Transfer protection

				
					StructOperationResponse brandProtectionTransfer(string idSession, string reg_id, string label, string prod, string authID, string idOwner)
			

Request the transfer of a brand protection to Netim.

REQUIRED

  • idSession string (32)
    Session ID.
  • reg_id string
    Brand protection ID at the actual registry.
  • label string (256)
    Brand main label.
  • prod string (20)
    Brand protection product ID. (See Brand production products)
  • authID string
    Brand protection authorization code / EPP code.
  • idOwner string (12)
    ID of the owner contact. (With “isOwner=1”)

An Object of type StructOperationResponse

  • idOwner must exist and belong the reseller.
  • idOwner must be a contact with isOwner=1
<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
try 
{ 
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN"); 
      $StructOperationResponse = $clientSOAP->brandProtectionTransfer($idSession, "IDBP-TO-TRANSFER", "MyBrand", "ADULTBLOCK", "123456abcd", "IDOWN"); 
 
      print_r($StructOperationResponse); 
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>