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.

14 lines 352 B
/** * Represents the response for a Verify request operation. */ export type VerifyRequestResponse = { /** * The unique identifier for the Verify request. */ request_id: string; /** * The status code indicating the outcome of the operation. */ status: string; }; //# sourceMappingURL=VerifyRequestResponse.d.ts.map