application/json
POST
/account/password
cURL (application/json)
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"
}