Authentication Disabled
Use Disable MFA to unlink the authenticator app from the user account.
This screen includes:
| # | Element | Description |
|---|---|---|
| 1 | Modal title | Displays Authentication setup. |
| 2 | Close action | Closes the modal. |
| 3 | MFA status message | Shows that 2-step verification is active. |
| 4 | Instruction text | Explains that unlinking the app turns off 2-step verification. |
| 5 | Learn more link | Opens MFA help content. |
| 6 | Unlink authentication app action | Starts the MFA unlink flow. |
Workflow
- Go to Manage account > Security Two-step verification.
- Select Unlink authentication app.
- Confirm unlinking to disable MFA.
- Select Cancel or close the modal to keep MFA active.
Validations
| Scenario | App behavior | SDK output |
|---|---|---|
| Session invalid | Block request | state = unauthenticated |
| MFA inactive | Block unlink flow | mfa = disabled |
| MFA active | Show unlink option | mfa = enabled |
| Unlink succeeds | Disable MFA | mfa = disabled |
| Request rejected | Display error state | status = 405 |
Actions
| Scenario | App behavior | SDK output |
|---|---|---|
| Screen opens | Load MFA disable screen | PUT /api/v3/account/mfa/disable |
| Learn more selected | Open MFA help content | navigation = learn_more |
| Unlink selected | Start unlink flow | mfa = unlink_pending |
| Unlink confirmed | Submit MFA disable request | POST /api/v3/account/mfa/disable |
| Cancel selected | Keep MFA active | state = cancelled |
| Close selected | Dismiss modal | state = dismissed |
Endpoint Resources
Authentication Disabled
PUT
v3/account/mfa/disable
Returns the MFA disable screen.
Unlink Authentication Code
POST
v3/account/mfa/disable
Unlinks the authenticator app and disables MFA.
