API Commands
[All Commands]

Info_Web_Hosting_Cron_Command


Information about a cron command.

Input:

string ssid token from Login
string webhosting Web Hosting code
int id identifier of the command

Output:

string status ok | error
int id unique identifier of the command
string address URL to be executed
int active whether the command is active
string min minutes in crontab format
string hour hours in crontab format
string day days in crontab format
string month months in crontab format
string dayofweek day of week in crontab format

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'],
    
'webhosting' => 'NGHTFH',
    
'id' => 58
];

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

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 [webhosting] => NGHTFH [id] => 58 ) $output: Array ( [status] => ok [id] => 58 [address] => https://domain.or.af/script.php [active] => 1 [min] => 00 [hour] => 0 [day] => * [month] => * [dayofweek] => * )

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