Retrieve an order
Overview
Use the getOrder method to retrieve details on a specific order placed with dynamic product information, or catalog products, using the unique, system generated reference.
Parameters
Parameters | Type/Description |
---|---|
sessionID |
Required (string) |
|
Session identifier, the output of the Login method. Include sessionID into all your requests. Avangate throws an exception if the values are incorrect. The sessionID expires in 10 minutes. |
orderReference |
Required (string) |
|
Order reference number of older order, which is already approved/paid. |
Response
Parameters | Type/Description |
---|---|
Object (orders with catalog products) |
|
Order information | Object (orders with dynamic product information) |
Request
<?php require ('PATH_TO_AUTH'); $orderReference = 'YOUR_ORDER_REFERENCE'; $jsonRpcRequest = array ( 'method' => 'getOrder', 'params' => array($sessionID, $orderReference), 'id' => $i++, 'jsonrpc' => '2.0' ); var_dump (callRPC((Object)$jsonRpcRequest, $host, true));