processor.accounts
processor.accounts
processor.accounts
Description
Retrieve accounts information on specified payment processor
Input Parameters
Name | Type | Required | Description |
---|---|---|---|
pp_type | mixed (string|array) | no | Show only accounts for specified payment processor |
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' => 'processor.accounts', 'data' => array('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 'processor.accounts' (length=18) 'result' => array (size=1) 'RG' => array (size=1) 0 => array (size=3) 'ppac_id' => string '109' (length=3) 'name' => string 'RG' (length=2) 'pp_type' => string 'Rocket Gate - DatingBackend' (length=27) 'merchant_id' => string '123123123123' 'request' => array (size=4) 'cmd' => string 'processor.accounts' (length=18) 'data' => array (size=1) 'pp_type' => string 'rg' (length=2) 'token' => string 'some-token' (length=26) 'pass' => string 'some-pass' (length=32) 'ts' => int 1429561629 'origin_ip' => string '93.87.220.184' (length=13) 'errors' => null
Referenced Files
None
Subscribers
None
- Last Author
- aplawecki
- Last Edited
- Jul 19 2018, 18:05