All error codes

invalid_password

HTTP 422 Password does not meet the policy

What happened

The administrator password in the request does not meet the platform policy: Latin letters and digits only, and at least one uppercase letter, one lowercase letter and one digit. The same rule applies wherever a password is accepted - creating a server, reinstalling one, and resetting the password.

What to do

Send a password built only from Latin letters and digits that contains all three character classes. The response never names the offending character because it is part of your secret; a password that is only too short or too long comes back as invalid_request with the field and the reason named instead.

Retrying

Fix the request and send it again.

How it arrives

{
    "type": "https://docs.fiberax.com/errors/invalid_password",
    "title": "Password does not meet the policy",
    "status": 422,
    "code": "invalid_password",
    "request_id": "a277dcd1ca652c65"
}

Branch your code on code, never on the wording of title.