/bff/account/login
Authenticates the user with credentials and a valid login attempt identifier.
AccountpostBffAccountLogin
Parameters
4 body
Body · 4
usernamestringRequiredUsername (email) of the account.
Length: 1–∞
passwordstringRequiredAccount password.
Length: 1–∞
attemptstringRequiredLogin attempt identifier from /create-login-attempt.
Length: 1–∞
hoststringOptional host origin for cross-domain login.
Request
POST /bff/account/login
curl -X POST "https://api.bizkithub.com/bff/account/login" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"username": "example_username",
"password": "example_password",
"attempt": "example_attempt",
"host": "example_host"
}'Response
JSON payload
{
"success": true,
"identity": "03oq7hsu9Iv70QogX0vBIcjDElj27WWe",
"needOtp": false,
"locale": "cs"
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.