Parameters
JSON body
Request body
application/jsonotpCodestringRequiredCurrent 6-digit TOTP code from the authenticator app — required to prove the request comes from the legitimate device and is not a session-hijack attempt to drop 2FA.
Removes the stored TOTP secret after verifying the user can still produce a valid code. When the user has no 2FA configured, returns { success: true } as a no-op.
JSON body
otpCodestringRequiredCurrent 6-digit TOTP code from the authenticator app — required to prove the request comes from the legitimate device and is not a session-hijack attempt to drop 2FA.
1 status code documented
success"true"Requiredsuccess"false"Requiredreason"invalid-code"Required{
"success": true
}POST /bff/account/setup-otp-disable
curl -X POST "https://api.bizkithub.com/bff/account/setup-otp-disable" \
-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.