API Commands
[All Commands]

List_Web_Hosting_Plans


List of available Web Hosting plans.

Input:

string ssid token from Login

Output:

string status ok | error
array plans list of available plans
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' => 'http://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']
];

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

print_r($input);
print_r($output);
$input: Array ( [ssid] => 51aca4e95c12821b56a9045babc943e7 ) $output: Array ( [status] => ok [plans] => Array ( [0] => Array ( [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] => ) [1] => Array ( [plan] => 2 [name] => Extra [type] => normal [price_user] => 8.81 [max_domains] => 100 [capacity_mb] => 10000 [avail_web] => 1 [avail_mysql] => 1 [avail_email] => 1 [category] => 0 [category_name] => ) ) )

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