Get the menu data structure. Returns a forest like structure with the menu the user has access to
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET '/menu/' \
--header 'Authorization: Bearer <token>'
Responses
{
"result": [
{
"childs": [
{}
],
"icon": "string",
"label": "string",
"name": "string",
"url": "string"
}
]
}
Modified at 2025-06-04 22:27:17