API Commands
[All Commands]

List_World_Hosting_Cron_Commands


List of cron commands.

Input:

string ssid token from Login
string domain World Hosting domain name

Output:

string status ok | error
array commands list of cron commands
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'],
    
'domain' => 'domain.or.af'
];

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

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 [domain] => domain.or.af ) $output: Array ( [status] => ok [commands] => Array ( [0] => Array ( [id] => 58 [address] => https://domain.or.af/script.php [active] => 1 [min] => 00 [hour] => 0 [day] => * [month] => * [dayofweek] => * ) [1] => Array ( [id] => 59 [address] => http://sub.domain.or.af/script2.php [active] => 0 [min] => 30 [hour] => * [day] => * [month] => * [dayofweek] => 1,2,3,4,5 ) ) )

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