Authenticate
"Authenticate" means "Let the user enter their 2FA code to Stripe, and tell me if they authenticated correctly"
Request
POST https://loginwithlink.com/api/authenticateResponse
If six-digit code is correct
// if user code is correct
{ authenticationSuccessful: true,
user: {
email: "[email protected]"
}
}If the six-digit code is not correct:
Last updated