API Commands
[All Commands]

Info_Web_Hosting_Plan


Information about a Web Hosting plan.

Input:

string ssid token from Login
int plan plan ID

Output:

string status ok | error
int plan plan ID
string name plan name
string type type of plan (normal or reseller)
string price_user your monthly price of this plan
int max_domains maximum number of hosted domains
int capacity_mb maximum storage capacity
int avail_web whether website hosting is available
int avail_mysql whether MySQL database is available
int avail_email whether email service is available
int category ID of the category of this plan
string category_name name of the category of this plan

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'],
    
'plan' => 1
];

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

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 [plan] => 1 ) $output: Array ( [status] => ok [plan] => 1 [name] => Basic [type] => normal [price_user] => 2.15 [max_domains] => 1 [capacity_mb] => 1000 [avail_web] => 1 [avail_mysql] => 1 [avail_email] => 1 [category] => 0 [category_name] => )

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