POST /signup

Creates a new account in our system using the provided information.

application/json

Body

  • login string Required
  • passwd string Required
  • remember string
  • g-recaptcha-response object
    Hide g-recaptcha-response attributes Show g-recaptcha-response attributes object
    • __v_isShallow boolean
    • dep object
      Hide dep attributes Show dep attributes object
      • w integer(int32)
      • n integer(int32)
    • __v_isRef boolean
    • _rawValue string
    • _value string
  • tfa string

    Two Factor Authentication Response.

Responses

  • 402 application/json

    Error response to a login request.

    Hide response attributes Show response attributes object
    • message string
    • field string
POST /signup
curl \
 --request POST 'https://my.interserver.net/apiv2/signup' \
 --header "Content-Type: application/json" \
 --data '{"login":"user@domain.com","passwd":"mypassword","remember":"true","g-recaptcha-response":{"dep":{"n":0,"w":0},"_value":"zzzzz","__v_isRef":true,"_rawValue":"zzzzz","__v_isShallow":false}}'
Request example
{
  "login": "user@domain.com",
  "passwd": "mypassword",
  "remember": "true",
  "g-recaptcha-response": {
    "dep": {
      "n": 0,
      "w": 0
    },
    "_value": "zzzzz",
    "__v_isRef": true,
    "_rawValue": "zzzzz",
    "__v_isShallow": false
  }
}
Response examples (402)
{
  "field": "2fa",
  "message": "missing 2fa"
}