BizKitHub
DocsAPI ReferenceCms/bff/cms/menu/custom-links
getpostCmsAdmin BFF

/bff/cms/menu/custom-links

Returns the personal custom links (label + external URL) the authenticated user has saved inside the active organisation. Rendered in the sidebar next to pinned menu items. Ordered by stored position, then insertion time. Returns 401 when no session is present and 403 when the user has no active organisation.

CMSgetBffCmsMenuCustom-links

Parameters

No parameters required

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

Response schema

1 status code documented

200SuccessList of personal custom links for the current user and organisation.
itemsobject[]Required
Each array item:
idstringRequired

16-char external id used to address the link.

labelstringRequired

Human-readable label shown in the sidebar.

urlstringRequired

Absolute http(s) URL. Opens in a new tab.

positionnumberRequired

0-based display order.

createdAtstringRequired

ISO-8601 timestamp of when the link was added.

Response example

application/json
{
  "items": [
    {
      "id": "example_id",
      "label": "example_label",
      "url": "example_url",
      "position": 0,
      "createdAt": "example_createdAt"
    }
  ]
}

Request example

GET /bff/cms/menu/custom-links

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