/server/list_upgrades


GET https://api.sitehost.nz/1.0/server/list_upgrades.json

Lists upgrades available for a server.

Query Parameters

ParameterTypeRequiredDescription
client_idintegerYesThe ID for the client.Example: 1
namestringYesThe name of the server.Example: servername

Code Samples

JavaScript PHP Rails Python
var xmlHttp = new XMLHttpRequest();
xmlHttp.open("GET", "https://api.sitehost.nz/1.0/server/list_upgrades.json?apikey=your_key_here&client_id=1&name=servername", false);

xmlHttp.send();

var response = xmlHttp.responseText;
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.sitehost.nz/1.0/server/list_upgrades.json?apikey=your_key_here&client_id=1&name=servername");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);
require 'net/http'
require 'uri'

uri = URI.parse("https://api.sitehost.nz/1.0/server/list_upgrades.json?apikey=your_key_here&client_id=1&name=servername")
http = Net::HTTP.new(uri.host, uri.port)
request = Net::HTTP::Get.new(uri.request_uri)

response = http.request(request)
import requests

uri = 'https://api.sitehost.nz/1.0/server/list_upgrades.json?apikey=your_key_here&client_id=1&name=servername'

response = requests.get(uri)

Response

200:

application/json
{
  "return": {
    "cores": [
      1,
      2,
      3,
      4,
      5,
      6,
      7
    ],
    "quota": {
      "ram": {
        "total": 1.38,
        "used": 1.38
      },
      "disk": {
        "total": 20,
        "used": 20
      }
    },
    "extra-disk": {
      "price": 5,
      "size": 5
    },
    "disk": {
      "xvda3": {
        "included": [
          "5"
        ],
        "extra": [
          10,
          15,
          20,
          25,
          30,
          35,
          40,
          45,
          50
        ]
      }
    },
    "ram": [
      0.5,
      1
    ],
    "plan": [
      "CLDCON1",
      "CLDCON2",
      "CLDCON4",
      "CLDCON6",
      "CLDCON8"
    ]
  },
  "msg": "Successful",
  "status": true,
  "time": 58.1
}