Skip to main content

GetRiskAssessmentHistoryResponseDTO

Package: @nauth-toolkit/core Type: DTO (Response)

Response DTO containing risk assessment history for adaptive MFA analysis.

import { GetRiskAssessmentHistoryResponseDTO } from '@nauth-toolkit/nestjs';

Properties

PropertyTypeRequiredDescription
dataIAuthAudit[]YesArray of risk assessment audit events

Example

{
"data": [
{
"id": 1,
"userId": 123,
"eventType": "ADAPTIVE_MFA_RISK_ASSESSED",
"eventStatus": "INFO",
"riskFactor": 0.75,
"adaptiveMfaTriggered": true,
"createdAt": "2025-01-15T10:30:00.000Z"
}
]
}

Used By