Get price list

				
					array brandProtectionPriceList(string idSession, [string product])
				
			

Return the price list for all brand protection products.

REQUIRED

  • idSession string (32)
    Session ID.

OPTIONAL


  • product string
    Filter on a specific brand protection product

An Array of Object of type StructDomainPriceList

$clientSOAP = new SoapClient('http://URL.wsdl');

try {
      $idSession = $clientSOAP->sessionOpen('AA001_user', 'xxxxxxxxxx');

      $priceList = $clientSOAP->brandProtectionPriceList($idSession);
      print_r($priceList);

} catch (SoapFault $fault) {
      echo "Exception: " . $fault->getMessage() . "\n";
}

if (isset($idSession)) {
      $clientSOAP->sessionClose($idSession);
}