# Change password Changes users password with verification code and new password Endpoint: POST /v1/auth/confirm_new_password Version: 0.9.0 ## Header parameters: - `x-auth-token` (string) Token protecting non-jwt routes. Format: + (base64 encoded) ## Request fields (application/json): - `email` (string, required) Example: "spongebob@bikinibottom.com" - `verification_code` (string, required) Example: "123456" - `new_password` (string, required) New user password. Requirements: - At least one lowercase letter is required. - At least one uppercase letter is required. - At least one digit (0-9) is required. - At least one special character from the provided set (^$*.[]{}()?-“!@#%&/,><’:;|_~+) is required. Example: "BigBob27!" ## Response 201 fields (application/json): - `status` (string) Enum: "success" ## Response 400 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number) ## Response 401 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number) ## Response 500 fields (application/json): - `timestamp` (string) - `path` (string) - `message` (array) - `statusCode` (number)