Parameters
JSON body
Request body
application/jsonotpCodestringRequiredOne-time password code from the authenticator app.
Validates the 6-digit TOTP code (RFC 6238, HMAC-SHA1, 30s period) against the user's stored base32 secret with ±1-step clock skew tolerance, and authorizes the login identity if correct.
JSON body
otpCodestringRequiredOne-time password code from the authenticator app.
1 status code documented
successbooleanRequiredWhether the OTP code was valid.
{
"success": false
}POST /bff/account/login-otp-auth
curl -X POST "https://api.bizkithub.com/bff/account/login-otp-auth" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"otpCode": "example_otpCode"
}'All BizKitHub public API endpoints require authentication via API key.