API Commands
[All Commands]

Cancel_Order


Cancel order in New, Pending_Authorization or Wait_For_Payment status. Order will be refunded and processing stopped.

Input:

string ssid token from Login
string order order ID

Output:

string status ok | error

Example:


<?php

$client 
= new SoapClient(null, [
    
'location' => 'https://regtons.com/soap/cmd.php',
    
'uri' => 'http://regtons.com/soap'
]);

$login_input = [
    
'login' => 'demo',
    
'password' => 'demouser'
];

$login_output $client->__call('Login', ['data' => $login_input]);

$input = [
    
'ssid' => $login_output['data']['ssid'],
    
'order' => '123456789'
];

$output $client->__call('Cancel_Order', ['data' => $input]);

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 [order] => 123456789 ) $output: Array ( [status] => ok )

API Manual - version from 2023-05-12 12:15:50