Set to be renewed

				
					StructOperationResponse brandProtectionSetPreference(string idSession, string IDBP, string codePref, string enable)
			

Define the “to be renewed” information on the protection.

REQUIRED


  • IDSession string (32)
    Session ID.
  • IDBP string
    Brand protection ID (BP-XXXX-XX).
  • codePref string
    Set to “to_be_renewed”.
  • enable string
    Set to: “0” to disable, “1” to enable.

An Object of type StructOperationResponse

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