Page MenuHomeDatingVIP

processor.accounts
Updated 3,318 Days AgoPublic

Version 2 of 4: You are viewing an older version of this document, as it appeared on Apr 15 2015, 09:49.

processor.accounts

Description

Retrieve accounts information on specified payment processor

Input Parameters
NameTypeRequiredDescription
pp_typemixed (string|array)noShow only accounts for specified payment processor
Return
NameTypeDescription
resultarrayResult array with data
Usage Example
<?php

require_once "curl_http_client/curl_http_client.php";
$curl = new Curl_HTTP_Client();

//setup payment url and timeout
$payment_url = 'https://dev-payment.datingvip.com';
$timeout 	= 30;

//generate post data
$post_data = array
(
	'token'		=> 'some-token',
	'password'	=> '130d04b80a4196857e47b254ebfbb53f',
	'command'	=> 'processor.accounts',
	'data'	=> array('pp_type' => 'rg')
);

$response = $curl->send_post_data($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=9)
  '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 '74' (length=2)
              'name' => string 'Rocket Gate - Online Connections' (length=32)
              'pp_type' => string 'RG' (length=2)
  'request' => 
    array (size=4)
      'token' => string 'some-token' (length=10)
      'password' => string '130d04b80a4196857e47b254ebfbb53f' (length=32)
      'command' => string 'processor.accounts' (length=18)
      'data' => 
        array (size=1)
          'pp_type' => string 'rg' (length=2)
  'ts' => int 1399911597
  'origin_ip' => boolean false
  'debug' => null
  'errors' => null
Last Author
dinke
Last Edited
Apr 15 2015, 09:49

Event Timeline

boris moved this document from Unknown Object (Phriction Wiki Document).Mar 11 2015, 13:30
boris changed the visibility from "Public (No Login Required)" to "All Users".
boris changed the visibility from "All Users" to "Public (No Login Required)".
boris shifted this object from the Restricted Space space to the S6 Everyone space.Aug 8 2018, 08:24