BizKitHub
DocsAPI ReferenceAccount/bff/account/update-profile
postAccountAdmin BFF

/bff/account/update-profile

Partial update of the authenticated user profile. Only provided fields are changed. Supersedes /set-name for new code — supports all personal fields including birthday and gender.

AccountpostBffAccountUpdate-profile

Parameters

JSON body

Request body

application/json
firstNamestringOptional

First name (will be capitalized).

Length: 2100
lastNamestringOptional

Last name (will be capitalized).

Length: 2100
middleNamestring | nullOptional
One of 2:
Variant 1
string

Middle name (will be capitalized). Null to clear.

Length: 0100
Variant 2
null
birthdaystring | nullOptional
One of 2:
Variant 1
string

Date of birth in ISO 8601 format (YYYY-MM-DD). Null to clear.

Example1990-05-15
Variant 2
null
genderstring | nullOptional
One of 2:
Variant 1
string

Gender identifier: "male", "female", "other", or null to clear.

Examplemale
Variant 2
null

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the update was successful.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/account/update-profile

post
curl -X POST "https://api.bizkithub.com/bff/account/update-profile" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "firstName": "example_firstName",
  "lastName": "example_lastName"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key