Page MenuHomeDatingVIP

subscription.reactivate
Updated 3,352 Days AgoPublic

Version 1 of 3: You are viewing an older version of this document, as it appeared on Mar 11 2015, 13:31.

subscriptions.reactivate

Description

Reactivate subscription with passed sub_id

Input Parameters
NameTypeRequiredDescription
sub_idIntYesPV2 sub_id
pp_typestringYesPP Type (NB|RG|PO|...)
Returned
NameTypeDescription
resultbooleanTrue on success false on failure
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'	=> '130d04b8123456857e47b254ebfbb53f',
	'command'	=> 'subscription.reactivate',
	'data'	=> array(
		'sub_id'	=> 1,
		'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 'subscription.reactivate' (length=23)
  'result' => boolean true
  'request' => 
    array (size=4)
      'token' => string 'some-token' (length=10)
      'password' => string '130d04b8123456857e47b254ebfbb53f' (length=32)
      'command' => string 'subscription.reactivate' (length=23)
      'data' => 
        array (size=2)
          'sub_id' => int 1
          'pp_type' => string 'RG' (length=2)
  'ts' => int 1382553782
  'origin_ip' => boolean false
  'debug' => null
  'errors' => null
Last Author
boris
Last Edited
Mar 11 2015, 13:31

Event Timeline

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