Skip to main content

UI Menu API

UI Menu List APIĀ 

Get all the menus

GET api/ui/menus

Successful response:

Status: 200 OK
Content-Type: application/json
Body:
[
{
"id": 1,
"url": "/ui/menus/1"
},
...
]

Get A Menu

Get a menu

GET api/ui/menus/:id

Successful response:

Status: 200 OK
Content-Type: application/json
Body:
{
"id": 9,
"name": "secondary",
"index": 2,
"children": [
{
"id": 10,
"name": "publish",
"index": 1,
"children": []
},
{
"id": 11,
"name": "help",
"index": 2,
"children": []
},
{
"id": 12,
"name": "user",
"index": 3,
"children": [
{
"id": 13,
"name": "debug",
"index": 1,
"children": []
},
{
"id": 14,
"name": "logout",
"index": 2,
"children": []
}
]
}
]
}