Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
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.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredidstringRequired16-char external id used to address the link.
labelstringRequiredHuman-readable label shown in the sidebar.
urlstringRequiredAbsolute http(s) URL. Opens in a new tab.
positionnumberRequired0-based display order.
createdAtstringRequiredISO-8601 timestamp of when the link was added.
{
"items": [
{
"id": "example_id",
"label": "example_label",
"url": "example_url",
"position": 0,
"createdAt": "example_createdAt"
}
]
}GET /bff/cms/menu/custom-links
curl -X GET "https://api.bizkithub.com/bff/cms/menu/custom-links" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.