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

9 body

9 total
Body · 9
localestringRequired

Communication locale code used to filter content.

Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.

Length: 22
organisationNamestringRequired

Name of the organisation for the new account.

emailInputstringRequired

Email address for the new account.

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
checkboxTermsboolean

Whether terms and conditions were accepted.

checkboxMarketingboolean

Whether marketing consent was given.

Default: true

Request

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

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.

Get API Key