@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.
23 lines • 615 B
TypeScript
import { VerifyRequestResponse } from './Response';
/**
* Represents a Verify Check response.
*/
export type VerifyCheck = VerifyRequestResponse & {
/**
* The unique identifier for the Verify request.
*/
requestId: string;
/**
* The unique identifier for the Verify event.
*/
eventId?: string;
/**
* The error message, if any, associated with the Verify Check.
*/
errorText?: string;
/**
* The estimated price for the messages sent during the Verify Check.
*/
estimatedPriceMessagesSent?: string;
};
//# sourceMappingURL=VerifyCheck.d.ts.map