UI Menu API
UI Menu List API
GET api/ui/menus
Successful response:
Status: 200 OK
Content-Type: application/json
Body:
[
{
"id": 1,
"url": "/ui/menus/1"
},
...
]
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": []
}
]
}
]
}