@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.
19 lines (16 loc) • 459 B
text/typescript
import { VerifyCheckErrorResponse } from './Response/VerifyCheckErrorResponse.mjs';
import '../enums/CheckStatus.mjs';
/**
* Represents an error that occurred during the verification check process.
*/
type VerifyCheckError = VerifyCheckErrorResponse & {
/**
* The unique identifier of the request.
*/
requestId: string;
/**
* The unique identifier of the error.
*/
errorId: string;
};
export type { VerifyCheckError };