GetRiskAssessmentHistoryResponseDTO
Package: @nauth-toolkit/core
Type: DTO (Response)
Response DTO containing risk assessment history for adaptive MFA analysis.
- NestJS
- Express
- Fastify
import { GetRiskAssessmentHistoryResponseDTO } from '@nauth-toolkit/nestjs';
import { GetRiskAssessmentHistoryResponseDTO } from '@nauth-toolkit/core';
import { GetRiskAssessmentHistoryResponseDTO } from '@nauth-toolkit/core';
Properties
| Property | Type | Required | Description |
|---|---|---|---|
data | IAuthAudit[] | Yes | Array 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"
}
]
}