Menu
Menu
Your Cart
Notification Module
This is the sticky Notification module. You can use it for any sticky messages such as cookie notices or special promotions, etc.
Contact our Outlet for Latest Rates

Aramex Track and Trace

'; // shows the methods coming from the service print_r($soapClient->__getFunctions()); /* parameters needed for the trackShipments method , client info, Transaction, and Shipments' Numbers. Note: Shipments array can be more than one shipment. */ $params = array( 'ClientInfo' => array( 'AccountCountryCode' => 'JO', 'AccountEntity' => 'AMM', 'AccountNumber' => 'NNNNN', 'AccountPin' => 'NNNNNN', 'UserName' => 'AAAA@AAA.com', 'Password' => 'XXXXXXXXX', 'Version' => 'v1.0' ), 'Transaction' => array( 'Reference1' => '001' ), 'Shipments' => array( 'XXXXXXXXXX' ) ); // calling the method and printing results try { $auth_call = $soapClient->TrackShipments($params); } catch (SoapFault $fault) { die('Error : ' . $fault->faultstring); } ?>