BizKitHub
DocsAPI ReferenceAdmin/bff/admin/user-organisations
getAdminAdmin BFF

/bff/admin/user-organisations

Returns all organisations a user belongs to, including blocked memberships. Useful for customer support to see a user's full organisation context. Requires internal admin membership.

AdmingetBffAdminUser-organisations

Parameters

1 query

Query parameters

· 1
usernamestringRequired

Username (email) of the user to look up.

Examplejohn@example.com

Response schema

1 status code documented

200Success
usernamestringRequired

The looked-up username.

itemsobject[]Required
Each array item:
organisationNamestringRequired

Organisation display name.

organisationSlugstringRequired

Organisation slug.

blockedbooleanRequired

Whether the membership is blocked.

insertedDateDate | string | string | numberRequired

Date when the user joined the organisation.

One of 4:
Variant 1
Date

Date when the user joined the organisation.

Variant 2
stringdate-time
Variant 3
stringdate
Variant 4
number

Response example

application/json
{
  "username": "example_username",
  "items": [
    {
      "organisationName": "example_organisationName",
      "organisationSlug": "example_organisationSlug",
      "blocked": false
    }
  ]
}

Request example

GET /bff/admin/user-organisations

get
curl -X GET "https://api.bizkithub.com/bff/admin/user-organisations?username=john%40example.com" \
  -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