VerifyEmailWithTokenDTO
Package: @nauth-toolkit/core
Type: DTO (Request)
Request DTO for verifying email addresses using verification tokens from email links.
- NestJS
- Express
- Fastify
import { VerifyEmailWithTokenDTO } from '@nauth-toolkit/nestjs';
import { VerifyEmailWithTokenDTO } from '@nauth-toolkit/core';
import { VerifyEmailWithTokenDTO } from '@nauth-toolkit/core';
Properties
| Property | Type | Required | Description |
|---|---|---|---|
token | string | Yes | Verification token from email link. Exactly 64 hexadecimal characters (SHA-256 hash). Trimmed and lowercased. |
Example
{
"token": "abc123def456789012345678901234567890123456789012345678901234567890"
}