v18

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-05-21112432.1 KB
Management UI

Update a portal menu link

Update a portal menu link. For an EXTERNAL link, provide a name, a target and an order.

User must have the ENVIRONMENT_SETTINGS[UPDATE] permission.

put/ui/portal-menu-links/{portalMenuLinkId}

Request body

namestring

Displayed name of the menu link

targetstring

target of the menu link

visibility'PUBLIC' | 'PRIVATE'

visibility of the menu link

orderinteger

The order of the menu link.

Example request

{
  "name": "My custom link",
  "target": "https://gravitee.io",
  "visibility": "PUBLIC",
  "order": 2
}

Response

The updated portal menu link

idstring required

Portal menu link id

namestring required

Displayed name of the menu link

type'EXTERNAL' required

type of the menu link

targetstring

target of the menu link

visibility'PUBLIC' | 'PRIVATE'

visibility of the menu link

orderinteger required

The order of the menu link.

Example response

{
  "id": "00f8c9e7-78fc-4907-b8c9-e778fc790750",
  "name": "My custom link",
  "type": "EXTERNAL",
  "target": "https://gravitee.io",
  "visibility": "PRIVATE",
  "order": 2
}