VerifyMFASetupResponseDTO
Package: @nauth-toolkit/core
Type: DTO (Response)
Response returned when an authenticated user completes MFA device setup verification. Contains the ID of the newly created device.
- NestJS
- Express
- Fastify
import { VerifyMFASetupResponseDTO } from '@nauth-toolkit/nestjs';
import { VerifyMFASetupResponseDTO } from '@nauth-toolkit/core';
import { VerifyMFASetupResponseDTO } from '@nauth-toolkit/core';
Properties
| Property | Type | Description |
|---|---|---|
deviceId | number | ID of the newly created MFA device |
Example
{
"deviceId": 42
}
Used By
- MFAService.setup() - Returned after setup verification is complete
Related DTOs
- SetupMFADTO - Request DTO for initiating MFA setup
- MFADeviceResponseDTO - Full device details (use with
getUserDevices())