partner.info
partner.info
partner.info
Description
Retrieve stored information about authenticated partner
Input Parameters
none
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' => 'partner.info', 'data' => array() ); $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 'partner.info' (length=12)
'result' =>
array (size=6)
'ptnr_id' => string '55' (length=2)
'name' => string 'Dating Backend' (length=14)
'default_return_url' => string '' (length=0)
'default_cancel_url' => string '' (length=0)
'db_id' => string 'DBT' (length=3)
'system_id' => string 'dbt' (length=3)
'request' =>
array (size=3)
'cmd' => string 'partner.info' (length=12)
'token' => string 'some-token' (length=26)
'pass' => string 'some-pass' (length=32)
'ts' => int 1429558357
'origin_ip' => string '93.87.220.184' (length=13)
'errors' => nullReferenced Files
None
Subscribers
None
- Last Author
- • dinke
- Last Edited
- Apr 20 2015, 15:35