BizKitHub
DocsAPI ReferenceCms/bff/cms/menu/pins
getputCmsAdmin BFF

/bff/cms/menu/pins

Returns the pinned menu items of the authenticated user inside the active organisation, ordered by their stored position (0-based, ascending). Pin identity is the menu URI; menu node ids are not stable across releases. If the URI no longer resolves in the current menu the client filters it out at render time. Returns 401 when no session is present and 403 when the user has no active organisation.

CMSgetBffCmsMenuPins

Parameters

No parameters required

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

Response schema

1 status code documented

200SuccessList of pinned menu items for the current user and organisation.
itemsobject[]Required
Each array item:
uristringRequired

Pinned menu URI.

Example/order
positionnumberRequired

0-based display order.

Example0
pinnedAtstringRequired

ISO-8601 timestamp of when the pin was first created.

Example2026-04-12T10:34:11Z

Response example

application/json
{
  "items": [
    {
      "uri": "/order",
      "position": 0,
      "pinnedAt": "2026-04-12T10:34:11Z"
    }
  ]
}

Request example

GET /bff/cms/menu/pins

get
curl -X GET "https://api.bizkithub.com/bff/cms/menu/pins" \
  -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