Frontend API
Remove the TOTP authenticator from the user’s account, disabling two-factor authentication. Requires password confirmation for security.
cURL
curl --request DELETE \ --url https://{deploymentHost}/me/authenticator/{id} \ --header 'Content-Type: application/json' \ --data '{ "password": "currentPassword123!" }'
{ "status": 200, "message": "", "data": { "deleted": true, "two_factor_enabled": false, "id": "auth_123456789" }, "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