/bff/account/create-account
Registers a new user account and sends a confirmation email.
AccountpostBffAccountCreate-account
Parameters
9 body
Body · 9
localestringRequiredCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
Length: 2–2
organisationNamestringRequiredName of the organisation for the new account.
emailInputstringRequiredEmail address for the new account.
firstNamestringRequiredFirst name of the account holder.
Length: 2–∞
lastNamestringRequiredLast name of the account holder.
Length: 2–∞
passwordInputstringRequiredPassword (min 8 characters).
Length: 8–∞
passwordAgainstringRequiredPassword confirmation (must match passwordInput).
Length: 8–∞
checkboxTermsbooleanWhether terms and conditions were accepted.
checkboxMarketingbooleanWhether marketing consent was given.
Default:
trueRequest
POST /bff/account/create-account
curl -X POST "https://api.bizkithub.com/bff/account/create-account" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"locale": "cs",
"organisationName": "example_organisationName",
"emailInput": "user@example.com",
"firstName": "example_firstName",
"lastName": "example_lastName",
"passwordInput": "example_passwordInput",
"passwordAgain": "example_passwordAgain",
"checkboxTerms": false,
"checkboxMarketing": true
}'Response
JSON payload
{
"success": false
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.