Page MenuHomeDatingVIP

processor.rg-mid-map
Updated 1,602 Days AgoPublic

processor.rg-mid-map

Description

Retrieve accounts information on specified payment processor.
No params required

Return
NameTypeDescription
resultarrayResult 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.rg-mid-map',
);

$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.rg-mid-map' (length=18)
      'result' => [
                    [
                        'rgmmm_merchant_id' => '1358984622',
                        'descriptors'       => [
                            [
                                'descriptor' => 'default',
                                'force_mid' => '0'
                            ],
                            [
                                'descriptor' => 'test.com',
                                'force_mid' => '1'
                            ],
                        ]
                    ]
                ],
        
      'request' => 
        array (size=4)
          'cmd' => string 'processor.rg-mid-map' (length=18)
          '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
Last Author
aplawecki
Last Edited
Dec 6 2019, 06:35