User Navigation Links REST API
Overview
The User Navigation Links REST API retrieves the user navigation links defined in the Navigation Menu for a site.
Administration
Get All User Navigation Links | ||
---|---|---|
Description |
This endpoint retrieves the global branding properties defined for a site. |
|
URI Endpoint |
/rest/v17/userNavigationLinks |
|
Endpoint Parameters |
This endpoint supports the following query specifications. For more information, see Manage Collections.
|
|
HTTP Method | GET | |
Request Body Parameters |
None |
|
Response Body Parameters |
navigationType |
The string value of Navigation type. Allowed values are: |
siteUrl |
The base URI for the site to be used with the URLs to fully define the links |
|
offset |
The integer offset value used in the current page |
|
count |
Total number of records returned in the response |
|
label |
Label of the navigation link as defined |
|
url |
Relative path of the link as defined |
|
linkType |
Navigation link type. Possible values are |
|
displayType |
Display type of the navigation link. Possible values are |
|
group |
Group of the navigation link. Possbile values are |
|
subgroup |
Sub group of the navigation link. Possible values are |
|
iconPath |
Path of the navigation link image file |
|
iconPosition |
Position of the icon to be displayed with respect to label. Possible values are |
|
order |
Sequence number within the group and subgroup |
|
isInternal |
Is the navigation menu link system defined?
|
https://site.oracle.com/rest/v17/userNavigationLinks
{ "limit": 50, "offset": 0, "count": 7, "totalResults": 7, "hasMore": false, "navigationType": "ALTA_NAVIGATION", "siteUrl": "http://sitename.oracle.com", "items": [{ "label": "Users", "url": "/admin/users/list_users.jsp?_bm_trail_refresh_=true", "linkType": "LINK", "displayType": "ICON", "group": "ADMIN", "subGroup": "CENTER", "iconPath": "/files/Icons/icon-user.png", "iconPosition": "LEFT_OF_THE_LABEL", "order": 1, "isInternal":true }, { "label": "Parts", "url": "/admin/parts/manage_parts.jsp?_bm_trail_refresh_=true", "linkType": "LINK", "displayType": "ICON", "group": "ADMIN", "subGroup": "CENTER", "iconPath": "/files/Icons/icon_product2.png", "iconPosition": "LEFT_OF_THE_LABEL", "order": 2, "isInternal":false } }