Responses

  • 200 application/json

    The listing of Servers services on your account.

    Hide response attributes Show response attributes object
    • server_id string Required

      The id of the server.

    • account_lid string Required

      The account lid of the server.

    • server_hostname string Required

      The hostname of the server.

    • server_status string Required

      The status of the server.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
GET /servers
curl \
 --request GET 'https://my.interserver.net/apiv2/servers' \
 --header "X-API-KEY: $API_KEY"
Response examples (200)
[
  {
    "server_id": "8404",
    "account_lid": "detain@interserver.net",
    "server_status": "deleted",
    "server_hostname": "testsignup.is.net"
  }
]
Response examples (401)
{
  "code": "string",
  "message": "string"
}