API Commands
[All Commands]

Create_Web_Hosting_Cron_Command


Create a new cron command.

Input:

string ssid token from Login
string webhosting Web Hosting code
string address URL to be executed
int active whether the command is active (1 by default) (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
int id unique identifier of the command

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

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

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

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