v1
latestOpenAPI 3.0.02026-08-0610682246.0 KBAuthentication
Complete updating the current email address
Completes updating the user's email address. The user must provide the OTP received in the email to verify the new email address. The difference between this endpoint and the /blaize/users/update-email/ endpoint is that this endpoint requires the extra layer of authentication through the required validator.
post/zephr/users/update-email/{otp}
Path parameters
otpstring required
The one-time password (OTP) received in the email.
Request body
Example request
{
"current_identifiers": {
"email_address": "john.doe@company.com"
},
"validators": {
"password": "mysecurepassword123"
}
}Response
OK. The email address was updated successfully.
Example response
{
"message": "User Email updated"
}