Authentication factors
Manage user authentication factors, including passwords and device-based factors (OTP and push).
Authentication factors prove that a user is who they claim to be. A user can authenticate with a password or enroll a device-based factor for one-time passwords and push notifications.
Use these endpoints to create and update passwords, enroll or remove factors, and inspect the factors available to a user. Factor enrollment may require a verification challenge before the factor becomes active.
Read End-user authentication for factor setup and login flows.
Operations
Create a passwordPOST
/passwords/{user_id}/createUpdate a passwordPOST/passwords/updateValidate a passwordPOST/passwords/validateStart password recoveryPOST/passwords/lost_password/startContinue password recoveryPOST/passwords/lost_password/resumeList user authentication factorsGET/authentication_factorsEnrol a user device for authentication using one-time passwordsPOST/authentication_factors/otp/{channel}Verify enrolment of a user device for authentication using one-time passwordsPOST/authentication_factors/otp/{channel}/verifyEnrol a user device for authentication using push notificationsPOST/authentication_factors/push/{channel}Unlink a user device for authentication using push notificationsDELETE/authentication_factors/push/{channel}