@vonage/verify
Version:
Verify API provides a choice of routes for sending a code to a user. You can use this to confirm a user's contact information, as a second factor when authenticating users, or for step-up authentication.
20 lines (17 loc) • 521 B
TypeScript
import { VerifyCheckResponse } from './Response/VerifyCheckResponse.js';
import '../enums/CheckStatus.js';
/**
* Represents a verification check result as part of a Verify search operation.
*/
type VerifySearchCheck = VerifyCheckResponse & {
/**
* The date and time this check was received in the format
* 'YYYY-MM-DD HH:MM:SS'.
*/
dateReceived: string;
/**
* The IP address associated with this verification check.
*/
ipAddress: string;
};
export type { VerifySearchCheck };