BizKitHub
DocsAPI ReferenceOrganisation/bff/organisation/members
getOrganisationAdmin BFF

/bff/organisation/members

Returns a lightweight list of non-blocked organisation members with internal member ID and full name. Use this for pickers (e.g. support person selection in organisation profile). The returned ID is the internal member ID used by supportPersonId in update-profile.

OrganisationgetBffOrganisationMembers

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200Success
itemsobject[]Required

Non-blocked organisation members.

Each array item:
idnumberRequired

Internal member ID (use as supportPersonId).

fullNamestringRequired

Full name of the member.

Response example

application/json
{
  "items": [
    {
      "id": 0,
      "fullName": "example_fullName"
    }
  ]
}

Request example

GET /bff/organisation/members

get
curl -X GET "https://api.bizkithub.com/bff/organisation/members" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key