Path parameters

  • id integer Required

    QuickServer ID number

Responses

  • 200 application/json

    QuickServer Reinstall OS info response

    Hide response attribute Show response attribute object
    • templates array[object] Required

      A listing of the templates.

      A VPS OS Template.

      Hide templates attributes Show templates attributes object
      • template_id string
      • template_type string
      • template_os string
      • template_version string
      • template_bits string
      • template_file string
      • template_available string
      • template_name string
      • template_dir string
  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
GET /qs/{id}/reinstall_os
curl \
 --request GET 'https://my.interserver.net/apiv2/qs/{id}/reinstall_os' \
 --header "X-API-KEY: $API_KEY"
Response examples (200)
{
  "templates": [
    {
      "template_id": "1906",
      "template_os": "ubuntu",
      "template_dir": "",
      "template_bits": "64",
      "template_file": "ubuntu-22.04",
      "template_name": "Ubuntu",
      "template_type": "14",
      "template_version": "22.04",
      "template_available": "1"
    }
  ]
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}