/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ /** * Example usage of the @prove-identity/prove-api SDK * * To run this example from the examples directory: * npm run build && npx tsx v3V3StartRequest.ts */ import { Proveapi } from "@prove-identity/prove-api"; const proveapi = new Proveapi({ security: { clientID: "", clientSecret: "", }, }); async function main() { const result = await proveapi.v3StartRequest({ allowOTPRetry: true, dob: "1981-01", emailAddress: "mpinsonm@dyndns.org", finalTargetUrl: "https://www.example.com/landing-page", flowType: "mobile", ipAddress: "10.0.0.1", phoneNumber: "2001001695", smsMessage: "#### is your temporary code to continue your application. Caution: for your security, don't share this code with anyone.", ssn: "0596", }); console.log(result); } main().catch(console.error);