Get domain information

				
					array SecMarketInfo(string IDSession, string plateform, string domain)
			

Return all information about a sale on a given plateform.

REQUIRED

  • IDSession string (32)
    Session ID.
  • plateform string (255)
    The plateform from which the informations must be retrieved (only “SEDO“ is available for now).
  • domain string (255)
    Domain name.

An Array of the requested infomations

<?php 
$clientSOAP = new SoapClient("http://URL.wsdl");
 
$plateform = 'SEDO';
$domain = 'my-domain.com';
 
try 
{ 
      $idSession = $clientSOAP->sessionOpen("XXXX", "XXXX", "EN");
 
      $result = $clientSOAP->SecMarketInfo($idSession, $plateform, $domain);
 
      print_r("<pre>");
      print_r($result);
      print_r("</pre>");
} 
catch(SoapFault $fault) 
{ 
      echo "Exception : " .$fault->getMessage(). "\n"; 
} 
 
if(isset($idSession)) 
{ 
      $clientSOAP->sessionClose($idSession); 
} 
?>