Get operation information

				
					StructOperationResponse opeInfo(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

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

try {
      $idSession = $clientSOAP->sessionOpen('XX000', 'xxxxxxxx');
      $structOperationResponse = $clientSOAP->opeInfo($idSession, 1000);
      print_r($structOperationResponse);

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

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