GET /ping

Performs a single ping/pong request to let you know if the server is up.

Responses

  • 200 application/json

    A simple response of "pong" for use with simple tests to see if a service is up.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
  • default

    Something is wrong

GET /ping
curl \
 --request GET 'https://my.interserver.net/apiv2/ping'
Response examples (200)
"pong"
Response examples (401)
{
  "code": "string",
  "message": "string"
}