BizKitHub
DocsAPI ReferenceMember/bff/member/save-description
postMemberAdmin BFF

/bff/member/save-description

Sets cas__organisation_member.description (internal, admin-only) and description_public (short bio shown to teammates). Both are optional; passing null or an empty string clears the respective field.

MemberpostBffMemberSave-description

Parameters

JSON body

Request body

application/json
idstringRequired

External member id.

descriptionstring | nullOptional
One of 2:
Variant 1
string

Internal member description — visible only to organisation admins. Pass empty string / null to clear.

Length: 04000
Variant 2
null
descriptionPublicstring | nullOptional
One of 2:
Variant 1
string

Short public bio — visible to teammates on the member profile. Pass empty string / null to clear.

Length: 0500
Variant 2
null

Response schema

1 status code documented

200Success
successbooleanRequired
Default: true

Response example

application/json
{
  "success": true
}

Request example

POST /bff/member/save-description

post
curl -X POST "https://api.bizkithub.com/bff/member/save-description" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "id": "example_id"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key