Body Required

  • password string Required

Body Required

  • password string Required

Responses

  • 200 application/json

    Resposne with a text message field.

    Hide response attribute Show response attribute object
    • text string Required

      Response text

  • 401 application/json

    Unauthorized

    Hide response attributes Show response attributes object
    • code string Required
    • message string Required
POST /account/password
curl \
 --request POST 'https://my.interserver.net/apiv2/account/password' \
 --header "X-API-KEY: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"password":"abcdefg123456"}'
curl \
 --request POST 'https://my.interserver.net/apiv2/account/password' \
 --header "X-API-KEY: $API_KEY" \
 --header "Content-Type: multipart/form-data" \
 --form "password=abcdefg123456"
Request examples
{
  "password": "abcdefg123456"
}
Response examples (200)
{
  "text": "You were successfull."
}
Response examples (401)
{
  "code": "string",
  "message": "string"
}