Get operation information

				
					StructOperationResponse queryOpe(string idSession, int numOperation)
				
			

Return the information of the requested operation

REQUIRED


  • idSession string (32)
    Session ID.

  • numOperation integer
    Tracking ID.

An Object of type StructOperationResponse

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