UNPKG

@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 412 B
import { VerifyCheckErrorResponse } from './Response'; /** * Represents an error that occurred during the verification check process. */ export type VerifyCheckError = VerifyCheckErrorResponse & { /** * The unique identifier of the request. */ requestId: string; /** * The unique identifier of the error. */ errorId: string; }; //# sourceMappingURL=VerifyCheckError.d.ts.map