BizKitHub
DocsAPI ReferenceAdmin/bff/admin/add-member
postAdminAdmin BFF

/bff/admin/add-member

Creates a new membership for an existing user in the specified organisation. If the user is already a member, returns the existing membership. Sends a welcome email notification. Requires internal admin membership.

AdminpostBffAdminAdd-member

Parameters

JSON body

Request body

application/json
organisationSlugstringRequired

Slug of the target organisation.

Exampleacme-corp
usernamestringRequired

Username (email) of the user to add as a member.

Examplejohn@example.com

Response schema

1 status code documented

200Success
successbooleanRequired

Whether the member was added successfully.

Response example

application/json
{
  "success": false
}

Request example

POST /bff/admin/add-member

post
curl -X POST "https://api.bizkithub.com/bff/admin/add-member" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "organisationSlug": "acme-corp",
  "username": "john@example.com"
}'

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key