@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.
15 lines • 475 B
TypeScript
import { VerifySearchErrorResponse } from './Response';
/**
* Represents an error response for a Verify search operation.
*/
export 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;
};
//# sourceMappingURL=VerifySearchError.d.ts.map