API Commands
[All Commands]

Create_World_Hosting_Cron_Command


Create a new cron command.

Input:

string ssid token from Login
string domain World Hosting domain name
string address URL to be executed
int active whether the command is active (optional)
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

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'],
    
'domain' => 'domain.or.af',
    
'address' => 'https://domain.or.af/script.php',
    
'min' => '00',
    
'hour' => '0',
    
'day' => '*',
    
'month' => '*',
    
'dayofweek' => '*'
];

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

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

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