Get reseller account settings

				
					StructQueryResellerAccount queryResellerAccount(string idSession)
				
			

Return the settings of the reseller account.

REQUIRED


  • idSession string (32)
    Session ID.

An Object of type StructQueryResellerAccount

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