Path parameters

  • id integer Required

    QuickServer ID number

Responses

  • 200 application/json

    QuickServer Reverse DNS info response

    Hide response attribute Show response attribute object
    • ips object

      The IPs you have access to and their current reverse dns mapping.

      Additional properties are allowed.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
GET /qs/{id}/reverse_dns
curl \
 --request GET 'https://my.interserver.net/apiv2/qs/{id}/reverse_dns' \
 --header "X-API-KEY: $API_KEY"
Response examples (200)
{
  "ips": {
    "1.2.3.4": "yourhost.com",
    "1.2.3.5": "anotherhost.com"
  }
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}