Frontend API
Remove the password from the user’s account entirely, making the account password-less. Requires current password and validation that alternative authentication methods are available.
cURL
curl --request DELETE \ --url https://{deploymentHost}/me/password \ --header 'Content-Type: application/json' \ --data '{ "current_password": "currentPassword123!" }'
200
password_removed
{ "status": 200, "message": "", "data": { "password_removed": true, "passwordless_account": true, "alternative_auth_methods": [ "social_connections", "magic_link" ], "removed_at": "2024-01-15T13:00:00Z" }, "session": { "signin_attempts": [], "signins": [ { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } ], "signup_attempts": [], "active_signin": { "id": "signin_987654321", "user_id": "user_456789123", "created_at": "2024-01-01T12:00:00Z" } }, "errors": []}
Show child attributes