@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) • 524 B
text/typescript
import { VerifySearchErrorResponse } from './Response/VerifySearchErrorResponse.mjs';
import '../enums/SearchStatus.mjs';
/**
* Represents an error response for a Verify search operation.
*/
type VerifySearchError = VerifySearchErrorResponse & {
/**
* The unique identifier for the Verify request that resulted in an error.
*/
requestId: string;
/**
* A descriptive error message providing more information about the error.
*/
errorText: string;
};
export type { VerifySearchError };