GetSuspiciousActivityResponseDTO
Package: @nauth-toolkit/core
Type: DTO (Response)
Response DTO containing suspicious activity audit events.
- NestJS
- Express
- Fastify
import { GetSuspiciousActivityResponseDTO } from '@nauth-toolkit/nestjs';
import { GetSuspiciousActivityResponseDTO } from '@nauth-toolkit/core';
import { GetSuspiciousActivityResponseDTO } from '@nauth-toolkit/core';
Properties
| Property | Type | Required | Description |
|---|---|---|---|
data | IAuthAudit[] | Yes | Array of suspicious audit events |
Example
{
"data": [
{
"id": 1,
"userId": 123,
"eventType": "SUSPICIOUS_ACTIVITY",
"eventStatus": "SUSPICIOUS",
"createdAt": "2025-01-15T10:30:00.000Z",
"ipAddress": "192.168.1.1",
"reason": "Multiple failed login attempts"
}
]
}