DocsAPI ReferenceAdmin/bff/admin/organisation-list
getAdminAdmin BFF

/bff/admin/organisation-list

Returns a paginated list of all organisations with active member counts. Supports fulltext search by name or slug. Sorted by liveness — the latest member activity (MAX last_activity_date) descending, falling back to organisation inserted date, so active organisations float to the top and dormant ones sink. Requires internal admin membership.

AdmingetBffAdminOrganisation-list

No parameters

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

Request

GET /bff/admin/organisation-list

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

Response

JSON payload

{
  "items": [
    {
      "name": "example_name",
      "slug": "example_slug",
      "memberCount": 0,
      "lastActivityAt": "example_lastActivityAt"
    }
  ],
  "itemCount": 0
}

All response codes

1 status code documented

Need an API key?

All BizKitHub API endpoints require authentication via API key.

Get API Key