Get protection information

				
					StructBrandProtectionInfo brandProtectionInfo(string IDSession, string IDBP)
			

Return all information about a brand protection.

REQUIRED

  • IDSession string (32)
    Session ID.
  • IDBP string
    Brand protection ID (BP-XXXX-XX).

An Object of type StructBrandProtectionInfo

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
$IDBP = 'BP-XXXX-XX';
 
try 
{ 
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN");
 
      $StructBrandProtectionInfo = $clientSOAP->brandProtectionInfo($idSession, $IDBP);
 
      print_r("<pre>");
      print_r($StructBrandProtectionInfo);
      print_r("</pre>");
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>