items.get
items.get
Items.get
Description
Retrieve item details by ID
Input Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| id | int | yes | Item ID |
Return
| Name | Type | Description |
|---|---|---|
| result | array | Result array with data |
Usage Example
<?php $curl = new \Dinke\CurlHttpClient; //setup payment url and timeout $payment_url = 'https://dev-payment.datingvip.com/api.json'; $timeout = 30; $curl->setCredentials('some-token', 'some-pass'); $post_data = array( 'cmd' => 'items.get', 'data' => array('id' => 20564) ); $response = $curl->sendPostData($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=1)
'result' =>
array (size=8)
'code' => int 700
'status' => string 'Action completed succesfully' (length=28)
'command' => string 'items.get' (length=10)
'result' =>
array (size=1)
array (size=25)
'item_id' => string '20564' (length=5)
'order_id' => string '565' (length=3)
'amount' => string '24.99' (length=5)
'trial_amount' => string '0.99' (length=4)
'trial_unit' => string 'day' (length=3)
'trial_period' => string '5' (length=1)
'rebill_unit' => string 'month' (length=5)
'rebill_period' => string '1' (length=1)
'max_rebill_count' => string '-1' (length=2)
'description' => string '5 days 0.99 trial, rebills monthly with 24.99 and unlimited rebills' (length=67)
'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 'USD' (length=3)
'date' => string '1429542524' (length=10)
'order_status' => string 'failed' (length=6)
'country' => string 'US' (length=2)
'ip' => string '127.0.0.1' (length=9)
'host' => string 'whatever.dinke.net' (length=18)
'request' =>
array (size=4)
'cmd' => string 'items.get' (length=10)
'data' =>
array (size=1)
'id => string '20564' (length=1)
'token' => string 'some-token' (length=26)
'pass' => string 'some-pass' (length=32)
'ts' => int 1429545358
'origin_ip' => string '93.87.220.184' (length=13)
'errors' => nullReferenced Files
None
Subscribers
None
- Last Author
- aplawecki
- Last Edited
- Feb 26 2021, 09:43