POST /auth/mfa/reset-totp
Reset TOTP Device
Reset TOTP Device
/auth/mfa/reset-totpResponses
200
NestAuthMfaResetResponseDto
| Field | Type | Required | Description |
|---|---|---|---|
message | string | required | Response message Example: MFA reset successfully |
Example response
{
"message": "MFA reset successfully"
}Try it
curl -X POST 'https://api.example.com/auth/mfa/reset-totp' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_ACCESS_TOKEN'