BizKitHub
DocsAPI ReferenceMember/bff/member/save-ai-settings
postMemberAdmin BFF

/bff/member/save-ai-settings

Persists the two fields consumed by selectMemberAssigneeCandidates when the AI issue-triage agent decides who owns a new ticket. Both fields are optional — a member with neither set is still shown to the agent, but with less signal.

MemberpostBffMemberSave-ai-settings

Parameters

JSON body

Request body

application/json
idstringRequired

External member id.

defaultRole"ceo" | "cto" | "marketing" | "support" | "it" | "sales" | nullRequired
One of 2:
Variant 1
"ceo" | "cto" | "marketing" | "support" | "it" | "sales"

Loose organisational role the AI issue-triage agent uses when picking an assignee. Pass null to clear.

Variant 2
null
aiDescriptionstringOptional

Free-form description of what this member does. Fed to the AI agent alongside the role. Pass an empty string / omit to clear.

Length: 02000

Response schema

1 status code documented

200Success
successbooleanRequired
Default: true

Response example

application/json
{
  "success": true
}

Request example

POST /bff/member/save-ai-settings

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

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key