== items.list ==
==== Description ====
Retrieve items list
==== Input Parameters ====
<table>
<tr><th>Name</th><th>Type</th><th>Required</th><th>Description</th></tr>
<tr><td>item_id</td><td>mixed (int|array)</td><td>no</td><td>Item ID(s)</td></tr>
<tr><td>page</td><td>int</td><td>no</td><td>Show only results on specified page</td></tr>
<tr><td>limit</td><td>int</td><td>no</td><td>Restrict number of results per page</td></tr>
<tr><td>on_date</td><td>string</td><td>no</td><td>Show results occurred on specified date</td></tr>
<tr><td>from_date</td><td>string</td><td>no</td><td>Show results from specified date</td></tr>
<tr><td>to_date</td><td>string</td><td>no</td><td>Show results until specified date</td></tr>
<tr><td>nocache</td><td>boolean</td><td>no</td><td>Choose whether results should be cached or not</td></tr>
<tr><td>tracking_tag</td><td>mixed (int|array)</td><td>no</td><td>Show results with specified client side tracking tag(s)</td></tr>
<tr><td>tracking_order</td><td>mixed (int|array)</td><td>no</td><td>Show results with specified client side order ID(s)</td></tr>
<tr><td>currency</td><td>string</td><td>no</td><td>Show results with specified currency</td></tr>
<tr><td>tracking_user</td><td>mixed (int|array)</td><td>no</td><td>Show results with specified partner user ID(s)</td></tr>
<tr><td>status</td><td>mixed (string|array)</td><td>no</td><td>Show results with specified order status</td></tr>
<tr><td>order_id</td><td>mixed (int|array)</td><td>no</td><td>Show results with specified order ID(s)</td></tr>
<tr><td>country</td><td>mixed (string|array)</td><td>no</td><td>Show results having specified countries</td></tr>
<tr><td>ip</td><td>mixed (string|array)</td><td>no</td><td>Show only results having specified IP address(es)</td></tr>
<tr><td>host</td><td>mixed (string|array)</td><td>no</td><td>Show only results having specified host name(s)</td></tr>
<tr><td>pp_type</td><td>mixed (string|array)</td><td>no</td><td>Show results having specified processor type(s)</td></tr>
</table>
==== Return ====
<table>
<tr><th>Name</th><th>Type</th><th>Description</th></tr>
<tr><td>result</td><td>array</td><td>Result array with data</td></tr>
</table>
==== Usage Example ====
```
<?php
require_once "$curl_http_client/curl_http_client.php";
$curl = new  = new \Dinke\Curl_HTTP_HttpClient();;
//setup payment url and timeout
$payment_url = 'https://dev-payment.datingvip.com/api.json';
$timeout 	= 30;
//generate post data
$post_data = array
(
	'$curl->setCredentials('some-token'		=>, 'some-token',
	'password'	=> '130d04b80a4196857e47b254ebfbb53f',');
$post_data = array(
	'comman'cmd'	=> 'items.list',
	'data'	=> array('limit' => 1)
);
$response = $curl->send_post_dPostData($payment_url, $post_data, null, $timeout);
if($response === false)
{
	//handle errors
}
//decode json to get array
$response = json_decode($response, true);
var_dump($response);
?>
```
Excepted output after running this script should be:
```
array (size=91)
  'result' => 
    array (size=8)
      'code' => int 700
      'status' => string 'Action completed succesfully' (length=28)
      'command' => string 'items.list' (length=10)
      'result' => 
        array (size=1)
          0 => 
            array (size=245)
              'item_id' => string '520564' (length=15)
              'order_id' => string '565' (length=13)
              'amount' => string '24.99' (length=5)
              'trial_amount' => string '0.0099' (length=4)
              'trial_unit' => string 'day' (length=3)
              'trial_period' => string '05' (length=1)
              'rebill_unit' => string 'month' (length=5)
              'rebill_period' => string '1' (length=1)
              'max_rebill_count' => string '-1' (length=2)
              'description' => string 'Monthly subscription 24.99 USD with 5 days 2.99 trial5 days 0.99 trial, rebills monthly with 24.99 and unlimited rebills' (length=7567)
              'tracking_item' => string '1' (length=1)
              'uprc_id' => string '0' (length=1)
              'processor' => string 'RG' (length=2)
              'tracking_user' => string '1' (length=1)
              'tracking_tag' => string '14' (length=2)
              'tracking_order' => string '0' (length=1)
              'first_name' => string 'Dragan' (length=6)
              'last_name' => string 'Dinic' (length=5)
              'email' => string 'dragan@dinke.net' (length=16)
              'currency' => string 'EURUSD' (length=3)
              'date' => string '1399651800429542524' (length=10)
              'order_status' => string 'initfailed' (length=46)
              'country' => string 'NLUS' (length=2)
              'ip' => string '127.0.0.1' (length=9)
              'host' => string 'whatever.dinke.net' (length=18)
      'request' => 
        array (size=4)
      'token' => string 'some-token' (length=30)
      'password' => string '130d04b80a4196857e47b254ebfbb53f' (length=32)
      'comman    'cmd' => string 'items.list' (length=10)
          'data' => 
            array (size=1)
              'limit' => string '1' (length=1)
  'ts        'token' => int 1399657467string 'some-token' (length=26)
  'origin_ip        'pass' => boolean falsestring 'some-pass' (length=32)
  'debug    'ts' => nullint 1429545358
      'origin_ip' => string '93.87.220.184' (length=13)
      'errors' => null
```