User
Change a user password, authenticating by providing an OTP
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
userEmail*string
Format
emailLength
length <= 256otp*string
Length
6 <= length <= 6newPassword*string
Must contain uppercase, lowercase, and a digit
Match
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d).*$Length
8 <= length <= 256Response Body
application/json
application/json
application/json
curl -X PUT "https://authentication.eniris.be/user/password/otp" \ -H "Content-Type: application/json" \ -d '{ "userEmail": "user@example.com", "otp": "string", "newPassword": "stringst" }'