GET /captcha

Retrieves the information so you can render a captcha check

Responses

  • 200 application/json

    An array containing a captcha field containing a string with a base64 encoded captcha image.

    Hide response attribute Show response attribute object
    • captcha string Required

      The base64 encoded captcha image.

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
GET /captcha
curl \
 --request GET 'https://my.interserver.net/apiv2/captcha'
Response examples (200)
{
  "captcha": "data:image/jpeg;base64,/9j/4AAQ"
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}