CloudboxListPrices

Retrieve list with information about actual Cloudbox prices. When ordering you cloudbox trough the Versio API you will receive 25% discount.

Output

Parameter Value Example value
success command executed successfully 0 = fout
1 = command executed successfully
command_response_message Error
Only sent when value parameter success = 0
incorrect password
firstbox Price of first cloudbox.
Only sent when value parameter success = 1
9.99
additionalboxes Price from 1 cloudbox or more.
Only sent when value parameter success = 1
9.99
directadmin One time DirectAmin license fee.
Only sent when value parameter success = 1
50
installatron Price per month for Installatron license.
Only sent when value parameter success = 1
4
windows2008 Price per month for Windows 2008R Server license.
Only sent when value parameter success = 1
60


Example

<? require("class_versio_api.php"); unset($command); $command = array( "command" => "CloudboxListPrices" ); $api = new Versio_api(); $versio = $api->api_send( $command ); IF($versio['success']==0) { echo("Error occured. Error code: ".$versio['command_response_code'].". Error message: ".$versio['command_response_message'].""); } else { ?> <table> <tr> <td>&pound; <?=$versio['firstbox'];?> per month </td> <td>&pound; <?=$versio['additionalboxes'];?> per month</td> <td>&pound; <?=$versio['directadmin'];?> once per license</td> <td>&pound; <?=$versio['installatron'];?> per month</td> <td>&pound; <?=$versio['windows2008'];?> per month</td> </tr> </table> <? } ?>