Get Menu
GET /v1/menu
Retrieves the full navigation menu structure available to the authenticated user. This includes sections, features, descriptions, icons, and nested menu items for each part of the platform such as Customers, Orders, Products, Services, Invoicing, Deliveries, Shops, Apps, and Settings. The menu defines the accessible areas and related URLs within the system.
Response Example
[
{
"title": "",
"items": [
{
"title": "Home",
"feature": "",
"description": "",
"icon": "home",
"url": "/dashboard/dashboard",
"type": "dashboard",
"items": []
},
{
"title": "Customers",
"feature": "AccountManagement",
"description": "Manage customer accounts",
"icon": "group",
"url": "/account-manager/accounts",
"items": [
{
"title": "Users",
"description": "View users",
"url": "/account-manager/users",
"items": []
},
{
"title": "Groups",
"description": "Manage groups",
"url": "/account-manager/customer-collections",
"items": []
}
]
},
{
"title": "Orders",
"feature": "OrderManagement",
"description": "List, search, view and edit orders",
"icon": "article",
"url": "/account-manager/orders",
"items": [
{
"title": "Purchase orders",
"feature": "PurchaseOrder",
"description": "Purchase orders",
"url": "/account-manager/purchase-orders",
"items": []
}
]
}
]
},
{
"title": "Shop",
"items": [
{
"title": "Product Shop",
"feature": "Sales",
"description": "Find and order products",
"icon": "storefront",
"url": "/shop/products/",
"items": []
},
{
"title": "Service Shop",
"feature": "Sales",
"description": "Find and order services",
"icon": "local_mall",
"url": "/order/services",
"items": []
}
]
},
{
"title": "APPS",
"items": [
{
"title": "Backup",
"feature": "Backup",
"description": "Backup Services",
"icon": "backup",
"url": "/backup/dashboard",
"items": [
{
"title": "Targets",
"description": "Backup Targets",
"url": "/backup/targets",
"items": []
},
{
"title": "Jobs",
"description": "Backup Jobs",
"url": "/backup/jobs",
"items": []
}
]
},
{
"title": "Support",
"feature": "Support",
"description": "View and add support tickets",
"icon": "confirmation_number",
"url": "/v2/support/my-tickets",
"items": [
{
"title": "My Tickets",
"url": "/v2/support/my-tickets",
"items": []
},
{
"title": "Company Tickets",
"url": "/v2/support/company-tickets",
"items": []
}
]
}
]
},
{
"title": "Other",
"items": [
{
"title": "Help",
"feature": "Help",
"description": "We are here to help you to get things rolling.",
"icon": "help_outline",
"url": "/account/help-center",
"items": []
}
]
}
]