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.

24 lines (21 loc) 584 B
import { VerifyRequest } from './VerifyRequest.mjs'; import './Response/VerifyRequestResponse.mjs'; /** * Represents an error response for a Verify operation with additional * error-related properties. */ type VerifyError = VerifyRequest & { /** * The error text providing more information about the error. */ error_text: string; /** * The error text providing more information about the error */ errorText: string; /** * (Optional) The network associated with the error. */ network?: string; }; export type { VerifyError };