cards.list
cards.list
cards.list
Description
Retrieve records of stored credit cards
Input Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| tracking_user | mixed (int|array) | Yes | Client application user ID(s) |
| card_type | mixed (string|array) | No | Show only results for specified card type |
| currency | mixed (string|array) | No | Show only results for specified currency |
| status | mixed (string|array) | No | Show only results for specified card status |
| ccdt_id | int | No | Show only results for specified card ID |
| pp_type | mixed (string|array) | No | Show only results for specified payment processor type (RG, NB etc.) |
| ccnum | string | No | Show only results for specified card number |
Returned
Array with these data in each array
| Name | Type | Description |
|---|---|---|
| ccdt_id | int | PV2 ccdt_id |
| name | string | Name on CC |
| exp_date | string | expire date |
| cc_type | string | cc_type |
| transaction_id | int | pv2 transaction_id |
| status | string | status (active|inactive|expired) |
| currency | string | currency |
| bin_blocked | int | Is BIN blocked (1|0) |
| bin_blocked_for_rebill | int | Is BIN blocked for rebill (1|0) |
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' => 'cards.list', 'data' => array( 'tracking_user' => 10166584, 'currency' => 'USD', 'status' => 'active', 'pp_type' => 'RG' ) ); $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 'cards.list' (length=10)
'result' =>
array (size=1)
0 =>
array (size=8)
'ccdt_id' => string '393' (length=3)
'name' => string 'Nerty Ben' (length=9)
'ccnum' => string '413415xxxxxx4135' (length=16)
'exp_date' => string '2016-03-01' (length=10)
'cc_type' => string 'visa' (length=4)
'transaction_id' => string '1980' (length=4)
'status' => string 'active' (length=6)
'currency' => string 'USD' (length=3)
'request' =>
array (size=4)
'cmd' => string 'cards.list' (length=10)
'data' =>
array (size=4)
'tracking_user' => string '10166584' (length=8)
'currency' => string 'USD' (length=3)
'status' => string 'active' (length=6)
'pp_type' => string 'RG' (length=2)
'token' => string 'some-token' (length=26)
'pass' => string 'some-pass' (length=32)
'ts' => int 1429544480
'origin_ip' => string '93.87.220.184' (length=13)
'errors' => nullReferenced Files
None
Subscribers
None
- Last Author
- • banovic
- Last Edited
- Jan 12 2017, 15:47