@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 • 401 B
TypeScript
import { Command } from '../../enums';
/**
* Represents the response for a Verify control operation.
*/
export type VerifyControlResponse = {
/**
* The status code indicating the outcome of the operation.
*/
status: string;
/**
* The command associated with the Verify control operation.
*/
command: Command;
};
//# sourceMappingURL=VerifyControlResponse.d.ts.map