BizKitHub
DocsAPI ReferenceAccount/bff/account/create-account
postAccountAdmin BFF

/bff/account/create-account

Registers a new user account and sends a confirmation email.

AccountpostBffAccountCreate-account

Parameters

JSON body

Request body

application/json
localestringRequired

Communication locale code — controls the language of textual data (product names, descriptions, articles, storefront UI, transactional e-mails).

Preferred format: BCP 47 language tag — language[-Script][-REGION]. Use the full tag whenever the script or region matters:

  • en-GB vs. en-US (British vs. American spelling)
  • pt-PT vs. pt-BR (European vs. Brazilian Portuguese)
  • zh-Hans vs. zh-Hant (Simplified vs. Traditional Chinese)
  • sr-Latn vs. sr-Cyrl (Latin vs. Cyrillic Serbian)

Backwards-compatible fallback: the bare two-letter ISO 639-1 code (cs, en, pl, …) is accepted indefinitely — legacy clients that only send the language subtag continue to work unchanged.

Resolution algorithm (server-side): the input is resolved against the supported locale list via the [RFC 4647 Lookup] progressive-fallback strategy — trailing subtags are stripped one by one until a supported locale is found. Example: en-GB-oxendicten-GBen (matched). If no subtag combination is supported, the request is rejected.

Currently supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da, hu, ro, nl, pt, fi, nb, hr. Region-specific variants (e.g. en-GB, pt-BR) are accepted and resolved to their base language when the exact variant is not registered separately.

Length: 235
Examplescsenen-GBpt-BRzh-Hans
organisationNamestringRequired

Name of the organisation for the new account.

emailInputstringRequired

Email address for the new account.

Exampleuser@example.com
firstNamestringRequired

First name of the account holder.

Length: 2
lastNamestringRequired

Last name of the account holder.

Length: 2
passwordInputstringRequired

Password (min 8 characters).

Length: 8
passwordAgainstringRequired

Password confirmation (must match passwordInput).

Length: 8
checkboxTermsbooleanOptional

Whether terms and conditions were accepted.

checkboxMarketingbooleanOptional

Whether marketing consent was given.

Default: true

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the account was created.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/account/create-account

post
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
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key