Page MenuHomeDatingVIP

api.server.log
Updated 3,317 Days AgoPublic

Version 2 of 3: You are viewing an older version of this document, as it appeared on Apr 20 2015, 11:33.

api.server.log

Description

Retrieve records from API server log datatable

Input Parameters
NameTypeRequiredDescription
tran_idintNoTransaction ID
pageintNo (default 1)Show only results on specified page
limitintNo (default 100)Restrict results per page
on_datestringNoShow results occured on specified date
from_datestringNoShow results from specified date
to_datestringNoShow results until specidied date
ipstringNoShow results for specified IP address
status codeintNoShow results having specified payment status code
Return
NameTypeDescription
resultarrayArray 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'	=> 'api.server.log',
	'data'	=> array('limit' => 1)
);

$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 'api.server.log' (length=14)
      'result' => 
        array (size=1)
          0 => 
            array (size=5)
              'ts' => string '1429542524' (length=10)
              'ip' => string '' (length=0)
              'request' => string '{"cmd":"transaction.finish","data":{"pp_type":"RG","hash":"142954xxx8626afa413c7f8651385ee2","card_number":"412800xxxxxx7113","card_expire":"1214","card_cvv2":"xxx"},"token":"some-token","pass":"some-pass"}' (length=245)
              'response' => string '{"code":"814","status":"Credit Card is expired","command":"transaction.finish","result":null,"request":{"cmd":"transaction.finish","data":{"pp_type":"RG","hash":"142954xxx8626afa413c7f8651385ee2","card_number":"412800xxxxxx7113","card_expire":"1214","card_cvv2":"xxx"},"token":"some-token","pass":"some-pass"},"ts":1429542524,"origin_ip":"93.87.220.184","errors":[{"code":814,"error_msg":"Credit Card is expired"}]}' (length=454)
              'status_code' => string '814' (length=3)
      'request' => 
        array (size=4)
          'cmd' => string 'api.server.log' (length=14)
          'data' => 
            array (size=1)
              'limit' => string '1' (length=1)
          'token' => string 'some-token' (length=26)
          'pass' => string 'some-pass' (length=32)
      'ts' => int 1429543888
      'origin_ip' => string '93.87.220.184' (length=13)
      'errors' => null
Last Author
dinke
Last Edited
Apr 20 2015, 11:33

Event Timeline

boris moved this document from Unknown Object (Phriction Wiki Document).Mar 11 2015, 13:23
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:21