Change owner of protection

				
					StructOperationResponse brandProtectionTransferOwner(string idSession, string id, string idOwner)
			

Request the transfer of the ownership to another party.

REQUIRED


  • idSession string (32)
    Session ID.
  • id string
    Brand protection ID (BP-XXXX-XX).
  • idOwner string (12)
    ID of the new owner (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->brandProtectionTransferOwner($idSession, "BP-XXXXX-XX", "IDOWN"); 
 
      print_r($StructOperationResponse); 
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>