Responses

  • 200 application/json

    Quickserver Ordering information.

    Hide response attributes Show response attributes object
    • qs_id string

      Quickserver ID.

    • server_details object

      Server details.

      Hide server_details attribute Show server_details attribute object
      • 381 object
        Hide 381 attributes Show 381 attributes object
        • cpu string

          CPU details of the server.

        • ram string

          RAM capacity of the server.

        • hd string

          Hard disk capacity of the server.

        • cores string

          Number of CPU cores.

        • cost string

          Cost of the server.

    • templates object

      Templates details.

      Hide templates attribute Show templates attribute object
      • Ubuntu array[array]

        Ubuntu template details.

        Name of the Ubuntu template.

        Name of the Ubuntu template.

    • version object

      Version details.

      Hide version attribute Show version attribute object
      • centosstream-8 object
        Hide centosstream-8 attribute Show centosstream-8 attribute object
        • centosstream-8 string

          Version details of CentOS Stream 8.

    • distro_sel object

      Distribution selection.

      Hide distro_sel attribute Show distro_sel attribute object
      • Ubuntu object
        Hide Ubuntu attribute Show Ubuntu attribute object
        • Ubuntu string

          Selected distribution for Ubuntu.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
GET /qs/order
curl \
 --request GET 'https://my.interserver.net/apiv2/qs/order' \
 --header "X-API-KEY: $API_KEY"
Response examples (200)
{
  "qs_id": "221",
  "server_details": {
    "381": {
      "cpu": "AMD Ryzen 9 5900X 12-Core Processor",
      "ram": "119GB",
      "hd": "1760GB",
      "cores": 24,
      "cost": "$140.00"
    }
  },
  "templates": {
    "Ubuntu": [
      [
        "ubuntu-22.04"
      ]
    ]
  },
  "version": {
    "centosstream-8": {
      "centosstream-8": "8 Stream (64 bits)"
    }
  },
  "distro_sel": {
    "Ubuntu": {
      "Ubuntu": "Ubuntu"
    }
  }
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}