[Index]
While default menu layouts are available for a user and an administrator user, a menu layout can be created from the GUI and can then be associated with a User Role. Users that have been assigned to this role will be able to use the created menu layout.
Model ref.: data/MenuLayout
The full URL would include the host-proxy name: https://[host-proxy].
Variables are enclosed in square brackets.
{ "$schema": "http://json-schema.org/draft-03/schema", "type": "object", "properties": { "name": { "title": "Name", "description": "The name that is given to the Menu Layout.", "type": "string", "required": true, "readonly": false }, "description": { "title": "Description", "description": "A description of the Menu Layout.", "type": "string", "required": false, "readonly": false }, "menu_items": { "title": "Menu Items", "description": "The list of menu items and -sub items that belong to the Menu Layout.", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "title": { "title": "Title", "description": "The menu item title as it will show on the menu.", "type": "string", "minLength": 1, "required": true, "readonly": false, "displayable": true }, "description": { "title": "Description", "description": "The menu item description as it will show on the menu.", "type": "string", "required": false, "readonly": false, "displayable": true }, "condition": { "title": "Condition", "description": "Only show this menu item if this condition evaluates to true.", "type": "string", "required": false, "readonly": false, "displayable": true }, "icon": { "title": "Icon", "description": "The icon to be used for this menu entry.", "type": "string", "format": "uri", "required": false, "readonly": false, "target": "/api/data/Icons/choices/?choice_title=icon_name&field=icon_value&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "icon_value", "target_title": "icon_name", "target_model_type": "data/Icons", "choices": [] }, "display": { "title": "Display As", "description": "Select the display format of the model types of the menu item. The format can be a Form for a single instance, or a List for more than one instance.", "type": "string", "required": false, "readonly": false, "default": "list", "choices": [ { "value": "form", "title": "Form" }, { "value": "list", "title": "List" }, { "value": "externalLink", "title": "External Link" }, { "value": "dashboard", "title": "Dashboard" } ] }, "type": { "title": "Type", "description": "The selected model type from the Type drop-down list to associate with the Title.", "type": "string", "format": "uri", "required": false, "readonly": false, "target": "/api/choices/?format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_model_type": "", "choices": [] }, "href": { "title": "Href", "description": "If a direct reference to a model type is used for the menu item, the specified path.", "type": "string", "required": false, "readonly": false }, "field_display_policy": { "title": "Field Display Policy", "description": "The selected Field Display Policy that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/FieldDisplayPolicy/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/FieldDisplayPolicy", "choices": [] }, "configuration_template": { "title": "Configuration Template", "description": "The selected Configuration Template that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/ConfigurationTemplate/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/ConfigurationTemplate", "choices": [] }, "default_model_type": { "title": "Set as default Model Type", "description": "Use this menu entry configuration as the default for this model type. The selected Field Display Policy and Configuration Template will be used for the corresponding model in cases like search, when not navigating from a menu or landing page.", "type": "boolean", "required": false, "readonly": false }, "landing_page": { "title": "Landing Page", "description": "The selected Landing Page that is associated with the Menu Item (only available on the New Admin GUI).", "type": "string", "format": "uri", "target": "/api/data/LandingPage/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/LandingPage", "choices": [] }, "dashboard": { "title": "Dashboard", "description": "The selected Dashboard that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/Dashboard/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/Dashboard", "choices": [] }, "filter_options": { "title": "Fixed Filters", "description": "Filters that can't be removed by end user. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } }, "configurable_options": { "title": "Configurable Filters", "description": "Filters suggested to end users and my be cleared. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } }, "menu_items": { "title": "Menu Items", "description": "The list of nested menu items that belong to the Menu Layout.", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "title": { "title": "Title", "description": "The nested menu item title as it will show on the menu.", "type": "string", "minLength": 1, "required": true, "readonly": false, "displayable": true }, "description": { "title": "Description", "description": "The nested menu item description as it will show on the menu.", "type": "string", "required": false, "readonly": false, "displayable": true }, "condition": { "title": "Condition", "description": "Only show this menu item if this condition evaluates to true.", "type": "string", "required": false, "readonly": false, "displayable": true }, "display": { "title": "Display As", "description": "Select the display format of the model types of the menu item. The format can be a Form for a single instance, or a List for more than one instance.", "type": "string", "required": false, "readonly": false, "default": "list", "choices": [ { "value": "form", "title": "Form" }, { "value": "list", "title": "List" }, { "value": "externalLink", "title": "External Link" }, { "value": "dashboard", "title": "Dashboard" } ] }, "type": { "title": "Type", "description": "The selected model type from the Type drop-down list to associate with the Title.", "type": "string", "format": "uri", "required": false, "readonly": false, "target": "/api/choices/?format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_model_type": "", "choices": [] }, "href": { "title": "Href", "description": "If a direct reference to a model type is used for the menu item, the specified path.", "type": "string", "required": false, "readonly": false }, "field_display_policy": { "title": "Field Display Policy", "description": "The selected Field Display Policy that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/FieldDisplayPolicy/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/FieldDisplayPolicy", "choices": [] }, "configuration_template": { "title": "Configuration Template", "description": "The selected Configuration Template that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/ConfigurationTemplate/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/ConfigurationTemplate", "choices": [] }, "default_model_type": { "title": "Set as default Model Type", "description": "Use this menu entry configuration as the default for this model type. The selected Field Display Policy and Configuration Template will be used for the corresponding model in cases like search, when not navigating from a menu or landing page.", "type": "boolean", "required": false, "readonly": false }, "landing_page": { "title": "Landing Page", "description": "The selected Landing Page that is associated with the Menu Item (only available on the New Admin GUI).", "type": "string", "format": "uri", "target": "/api/data/LandingPage/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/LandingPage", "choices": [] }, "dashboard": { "title": "Dashboard", "description": "The selected Dashboard that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/Dashboard/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/Dashboard", "choices": [] }, "filter_options": { "title": "Fixed Filters", "description": "Filters that can't be removed by end user. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } }, "configurable_options": { "title": "Configurable Filters", "description": "Filters suggested to end users and my be cleared. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } }, "menu_items": { "title": "Menu Items", "description": "The list of nested menu items that belong to the Menu Layout.", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "title": { "title": "Title", "description": "The nested menu item title as it will show on the menu.", "type": "string", "minLength": 1, "required": true, "readonly": false, "displayable": true }, "description": { "title": "Description", "description": "The nested menu item description as it will show on the menu.", "type": "string", "required": false, "readonly": false, "displayable": true }, "condition": { "title": "Condition", "description": "Only show this menu item if this condition evaluates to true.", "type": "string", "required": false, "readonly": false, "displayable": true }, "display": { "title": "Display As", "description": "Select the display format of the model types of the menu item. The format can be a Form for a single instance, or a List for more than one instance.", "type": "string", "required": false, "readonly": false, "default": "list", "choices": [ { "value": "form", "title": "Form" }, { "value": "list", "title": "List" }, { "value": "externalLink", "title": "External Link" }, { "value": "dashboard", "title": "Dashboard" } ] }, "type": { "title": "Type", "description": "The selected model type from the Type drop-down list to associate with the Title.", "type": "string", "format": "uri", "required": false, "readonly": false, "target": "/api/choices/?format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_model_type": "", "choices": [] }, "href": { "title": "Href", "description": "If a direct reference to a model type is used for the menu item, the specified path.", "type": "string", "required": false, "readonly": false }, "field_display_policy": { "title": "Field Display Policy", "description": "The selected Field Display Policy that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/FieldDisplayPolicy/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/FieldDisplayPolicy", "choices": [] }, "configuration_template": { "title": "Configuration Template", "description": "The selected Configuration Template that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/ConfigurationTemplate/template_choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/ConfigurationTemplate", "choices": [] }, "default_model_type": { "title": "Set as default Model Type", "description": "Use this menu entry configuration as the default for this model type. The selected Field Display Policy and Configuration Template will be used for the corresponding model in cases like search, when not navigating from a menu or landing page.", "type": "boolean", "required": false, "readonly": false }, "landing_page": { "title": "Landing Page", "description": "The selected Landing Page that is associated with the Menu Item (only available on the New Admin GUI).", "type": "string", "format": "uri", "target": "/api/data/LandingPage/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/LandingPage", "choices": [] }, "dashboard": { "title": "Dashboard", "description": "The selected Dashboard that is associated with the Menu Item.", "type": "string", "format": "uri", "target": "/api/data/Dashboard/choices/?field=name&format=json&hierarchy=[hierarchy]&auth_token=[authtoken], "target_attr": "name", "target_model_type": "data/Dashboard", "choices": [] }, "filter_options": { "title": "Fixed Filters", "description": "Filters that can't be removed by end user. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } }, "configurable_options": { "title": "Configurable Filters", "description": "Filters suggested to end users and my be cleared. Applicable to display as = 'list'", "type": "array", "required": false, "readonly": false, "items": { "type": "object", "properties": { "filter_by": { "title": "Filter By", "type": "string", "required": false, "readonly": false }, "filter_type": { "title": "Filter Type", "type": "string", "required": false, "readonly": false, "choices": [ { "value": "contains", "title": "Contains" }, { "value": "notcontain", "title": "Does Not Contain" }, { "value": "startswith", "title": "Starts With" }, { "value": "endswith", "title": "Ends With" }, { "value": "equals", "title": "Equals" }, { "value": "notequal", "title": "Not Equal" } ] }, "filter_string": { "title": "Filter String", "type": "string", "required": false, "readonly": false }, "ignore_case": { "title": "Ignore Case", "type": "boolean", "required": false, "readonly": false } } } } } } } } } } } } } }, "schema_version": "1.0.8" }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the GUI Add form. | GET | /api/data/MenuLayout/add/ |
|
The GUI Add form of data/MenuLayout as JSON |
The API call to the /add/ URL can only be made from a hierarchy that allows the model type to be added. The actions in the response shows the url for the POST API call to create an instance.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Create | POST | /api/data/MenuLayout | hierarchy=[hierarchy] |
|
tool/Transaction/[trans pkid]to inspect the created resource and its instance pkid.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Bulk delete [pkid1],[pkid2]... | DELETE | /api/data/MenuLayout/ | hierarchy=[hierarchy] | {"hrefs":["/api/data/MenuLayout/[pkid1]", "/api/data/MenuLayout/[pkid2]", ...]} |
GET http://[host-proxy]/api/data/MenuLayout/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Bulk Modify | GET | /api/data/MenuLayout/bulk_update/?schema=&schema_rules=true |
|
|
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Bulk Modify | POST | /api/data/MenuLayout/bulk_update/ |
|
For example: {"data":{"name":"value"}, "meta":{}, "request_meta":{ "hrefs":["/api/v0/data/MenuLayout/[pkid1]", "/api/v0/data/MenuLayout/[pkid2]",...]}} |
GET http://[host-proxy]/api/data/MenuLayout/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Get a selected [export_format] of the schema and instances [pkid1], [pkid2],... of data/MenuLayout; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | POST | /api/data/MenuLayout/export/ |
|
{ "hrefs":["/api/data/MenuLayout/[pkid1]", "/api/data/MenuLayout/[pkid2]",...]}} |
For export_format=json, the response is a time stamped zip file of data in JSON as in the system database. Item properties such as strings that are empty or Boolean values that are not set, are not included. The filename in the response is of the format as the example:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip Content-Language:en Content-Type:application/x-zip
For export_format=raw_xlsx, the response is a MS Excel spreadsheet with columns corresponding to the JSON format export and a response filename format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, arranged by any Field Display Policies that apply. The columns correspond with those of a Bulk Load Template export sheet. The response filename format is:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
The XLSX format can be used to bulk load instances of data/MenuLayout and the JSON format can be used to import instances of data/MenuLayout.
GET http://[host-proxy]/api/data/MenuLayout/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get a compressed format of the Bulk Load spreadsheet template for data/MenuLayout | POST | /api/data/MenuLayout/export_bulkload_template/ |
|
The response is an attachment of the format: filetype_bulkloadsheet.xlsx.gz |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Tag | PATCH | /api/data/MenuLayout/+tag/ |
|
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Tag Version | PATCH | /api/data/MenuLayout/+tag_version/ |
|
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Configuration Template | GET | /api/data/MenuLayout/configuration_template/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/ConfigurationTemplate/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Field Display Policy | GET | /api/data/MenuLayout/field_display_policy/ | hierarchy=[hierarchy] |
|
POST http://[host-proxy]/api/data/FieldDisplayPolicy/?hierarchy=[hierarchy]
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Migration Template | GET | /api/data/MenuLayout/migration/ |
|
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
List | GET | /api/data/MenuLayout/ |
|
The data/MenuLayout schema and all instances as JSON. |
(The list will return 0 to 3 data/MenuLayout instances)
{ "pagination": { "skip": 0, "limit": 3, "maximum_limit": 2000, "total": 29, "total_limit": null, "order_by": "name", "direction": "asc", "current": "/api/data/MenuLayout/?skip=0&limit=3&order_by=name&direction=asc&traversal=fulltree" }, "operations": [ "field_display_policy", "update", "help", "remove", "move", "add", "export", "list", "configuration_template", "get", "bulk_update_form", "migration", "transform", "export_bulkload_template" ], "meta": { "model_type": "data/MenuLayout", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [], "tags": [], "title": "", "business_key": { "unique": [ "name" ], "hierarchy": true }, "api_version": "21.2", "cached": true, "references": { "children": [], "parent": [ { "href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101", "pkid": "6t0ggef2c0deab00hb595101" } ], "device": [ { "href": "", "pkid": "" } ], "foreign_key": [] }, "model_specific_actions": [ "add", "bulk_update_form", "clone", "configuration_template", "export", "export_bulkload_template", "field_display_policy", "get", "help", "list", "migration", "remove", "tag", "tag_version", "update" ], "schema_version": "1.0.8", "actions": [ { "add": { "method": "GET", "class": "add", "href": "/api/data/MenuLayout/add/?hierarchy=[hierarchy]", "support_async": false, "title": "Add" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/MenuLayout/?hierarchy=[hierarchy]", "support_async": true, "title": "Delete" } }, { "bulk_update_form": { "method": "GET", "class": "update", "href": "/api/data/MenuLayout/bulk_update/?hierarchy=[hierarchy]&schema=&schema_rules=true", "support_async": false, "title": "Bulk Modify" } }, { "export": { "method": "POST", "class": "export", "href": "/api/data/MenuLayout/export/?hierarchy=[hierarchy]", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/?auth_token=[authtoken], "submit": "payload" } }, { "export_bulkload_template": { "method": "POST", "class": "bulkload_template", "href": "/api/data/MenuLayout/export_bulkload_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Export Bulk Load Template" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/data/MenuLayout/+tag/?hierarchy=[hierarchy]", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/?auth_token=[authtoken] } }, { "tag_version": { "method": "PATCH", "class": "tag_version", "href": "/api/data/MenuLayout/+tag_version/?hierarchy=[hierarchy]", "support_async": true, "title": "Tag Version", "view": "/api/view/TagVersionForm/add/?auth_token=[authtoken] } }, { "configuration_template": { "method": "GET", "class": "config", "href": "/api/data/MenuLayout/configuration_template/?hierarchy=[hierarchy]", "support_async": false, "title": "Configuration Template" } }, { "field_display_policy": { "method": "GET", "class": "display_policy", "href": "/api/data/MenuLayout/field_display_policy/?hierarchy=[hierarchy]", "support_async": false, "title": "Field Display Policy" } }, { "migration": { "method": "GET", "class": "migration", "href": "/api/data/MenuLayout/migration/?hierarchy=[hierarchy]", "support_async": false, "title": "Migration Template" } }, { "list": { "method": "GET", "class": "list", "href": "/api/data/MenuLayout/?hierarchy=[hierarchy]", "support_async": false, "title": "List" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/MenuLayout/help?hierarchy=[hierarchy]", "support_async": false, "title": "Help" } } ] }, "resources": [ { "data": { "name": "default", "menu_items": [ { "title": "Hierarchy Management", "menu_items": [ { "title": "Hierarchy", "display": "list", "type": "data/HierarchyNode" }, { "title": "Hierarchy Default", "display": "list", "type": "data/HierarchyDefault" }, { "title": "Hierarchy Node Types", "display": "list", "type": "data/HierarchyNodeType" } ] }, { "title": "Network Devices", "menu_items": [ { "title": "CTX", "display": "list", "type": "data/CiscoTelePresenceExchange" }, { "title": "CUCM", "display": "list", "type": "data/CallManager" }, { "title": "CUC", "display": "list", "type": "data/UnityConnection" }, { "title": "LDAP", "display": "list", "type": "data/Ldap" }, { "title": "Lync", "display": "list", "type": "data/Lync" }, { "title": "ServiceNow", "display": "list", "type": "data/ServiceNow" }, { "title": "TMS", "display": "list", "type": "data/CiscoTMS" }, { "title": "IOS Devices", "display": "list", "type": "data/Ios" }, { "title": "PGW Devices", "display": "list", "type": "data/Pgw" }, { "title": "WebEx", "display": "list", "type": "data/WebEx" }, { "title": "CUCCE", "display": "list", "type": "data/Cucce" }, { "title": "CUCCX", "display": "list", "type": "data/Cuccx" }, { "title": "HCMF", "display": "list", "type": "data/Hcmf" }, { "title": "IMAP4", "display": "list", "type": "data/Imap" }, { "title": "SMTP", "display": "list", "type": "data/Smtp" } ] }, { "title": "Services", "menu_items": [ { "title": "Notification", "display": "list", "type": "data/NotificationService" } ] }, { "title": "Site Management", "menu_items": [ { "title": "Users", "display": "list", "type": "device/cucm/User" }, { "title": "Phones", "display": "list", "type": "device/cucm/Phone" }, { "title": "Lines", "display": "list", "type": "device/cucm/Line" }, { "title": "Mobility", "display": "list", "type": "device/cucm/DeviceProfile" }, { "title": "Voicemail", "display": "list", "type": "device/cuc/User" }, { "title": "Remote Destination Profiles", "display": "list", "type": "device/cucm/RemoteDestinationProfile" }, { "title": "Remote Destinations", "display": "list", "type": "device/cucm/RemoteDestination" }, { "title": "Line Group", "display": "list", "type": "device/cucm/LineGroup" }, { "title": "Hunt List", "display": "list", "type": "device/cucm/HuntList" }, { "title": "Hunt Pilot", "display": "list", "type": "device/cucm/HuntPilot" }, { "title": "Call Pickup Group", "display": "list", "type": "device/cucm/CallPickupGroup" }, { "title": "Call Park", "display": "list", "type": "device/cucm/CallPark" }, { "title": "Directed Call Park", "display": "list", "type": "device/cucm/DirectedCallPark" }, { "title": "Meet Me", "display": "list", "type": "device/cucm/MeetMe" }, { "title": "Device Pools", "display": "list", "type": "device/cucm/DevicePool" } ] }, { "title": "Self Service Configuration", "menu_items": [ { "title": "Feature Configuration", "display": "list", "type": "data/SelfServiceFeatureDisplayPolicy" }, { "title": "Field Names", "display": "list", "type": "data/SelfServiceTranslation" }, { "title": "External Links", "display": "list", "type": "data/SelfServiceLinks" } ] }, { "title": "Template Tools", "menu_items": [ { "title": "Macros", "display": "list", "type": "data/Macro" }, { "title": "Configuration Templates", "display": "list", "type": "data/ConfigurationTemplate" }, { "title": "GUI Rules", "display": "list", "type": "data/GUIRule" }, { "title": "Provisioning Workflows", "display": "list", "type": "data/ProvisioningWorkflow" }, { "title": "Data Models", "display": "list", "type": "data/DataModel" }, { "title": "Domain Models", "display": "list", "type": "data/DomainModel" }, { "title": "Relations", "display": "list", "type": "data/Relation" }, { "title": "Views", "display": "list", "type": "data/View" }, { "title": "Packages", "display": "list", "type": "data/Package" }, { "title": "Migration Templates", "display": "list", "type": "data/Migration" }, { "title": "Transform Templates", "display": "list", "type": "data/Transform" } ] }, { "title": "Administration Tools", "menu_items": [ { "title": "Cache Control Policy", "display": "list", "type": "data/CacheControlPolicy" }, { "title": "Import", "display": "form", "type": "tool/DataImport" }, { "title": "Theme", "display": "list", "type": "tool/Theme" }, { "title": "Saved Searches", "display": "list", "type": "data/SavedSearch" }, { "title": "Transaction", "display": "list", "type": "tool/Transaction" }, { "title": "Bulk Load", "display": "form", "type": "tool/BulkLoad" }, { "title": "License", "display": "list", "type": "tool/License" }, { "title": "Events", "display": "list", "type": "tool/Transaction", "href": "/api/tool/Transaction/?entity=data/Event&operation=execute" }, { "title": "Macro Evaluator", "display": "form", "type": "tool/Macro" }, { "title": "Reports", "display": "list", "type": "data/Report" }, { "title": "Data Sync", "display": "list", "type": "data/DataSync" }, { "title": "Scheduling", "display": "list", "type": "data/Schedule" }, { "title": "Cascade Delete", "display": "form", "type": "tool/CascadeDelete" } ] }, { "title": "Role Based Access", "menu_items": [ { "title": "Administration Users", "display": "list", "type": "data/User" }, { "title": "Authentication Proxy", "display": "list", "type": "data/AuthenticationProxy" }, { "title": "Credential Policy", "display": "list", "type": "data/CredentialPolicy" }, { "title": "User Roles", "display": "list", "type": "data/Role" }, { "title": "Access Profiles", "display": "list", "type": "data/AccessProfile" }, { "title": "Authorized Admin Hierarchy", "display": "list", "type": "data/AuthorizedAdminHierarchy" }, { "title": "Field Display Policies", "display": "list", "type": "data/FieldDisplayPolicy" }, { "title": "Themes", "display": "list", "type": "data/Theme" }, { "title": "Menu Layouts", "display": "list", "type": "data/MenuLayout" }, { "title": "Dashboards", "display": "list", "type": "data/Dashboard" } ] }, { "title": "Advanced Menu", "menu_items": [ { "title": "Model Types", "display": "tree", "href": "/api" } ] }, { "title": "System Monitoring", "display": "list", "menu_items": [ { "title": "Configuration", "display": "list", "type": "data/SystemMonitoringConfig", "field_display_policy": "Default" }, { "title": "Database Statistics", "display": "list", "type": "data/MetricDatabaseCollectionStats" }, { "title": "Model Counts", "display": "list", "type": "data/MetricResourceCount" }, { "title": "VOSS-4-UC Cluster", "display": "list", "type": "data/MonitoringCluster" }, { "title": "Login Sessions", "display": "list", "type": "data/MonitoringSessions" }, { "title": "Worker Queue", "display": "list", "type": "data/MonitoringQueue" }, { "title": "Call Manager", "display": "list", "type": "data/MonitoringCucm" }, { "title": "Unity Connection", "display": "list", "type": "data/MonitoringCuc" }, { "title": "HCMF", "display": "list", "type": "data/MonitoringHcmf" }, { "title": "LDAP", "display": "list", "type": "data/MonitoringLdap" } ] }, { "title": "About", "display": "form", "href": "/www/version.json" }, { "title": "License Info", "display": "form", "type": "tool/License" } ], "pkid": "5abb946baffa931ce72a7443", "hierarchy_friendly_name": "sys (System)", "hierarchy_path": "sys" }, "meta": { "model_type": "data/MenuLayout", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [], "tags": [ "base", "core" ], "title": "default", "business_key": { "hierarchy": true, "unique": [ "name" ] }, "api_version": "21.2", "cached": true, "references": { "device": [ { "href": "", "pkid": "" } ], "owner": [ { "pkid": "" } ], "parent": [ { "pkid": "6t0ggef2c0deab00hb595101", "href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101" } ], "foreign_key": [ { "path": "menu_items.9.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" } ], "self": [ { "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/", "pkid": "5abb946aaffa931ce72a7442" } ] }, "path": [ "6t0ggef2c0deab00hb595101", "5abb946aaffa931ce72a7442" ], "system_resource": true, "schema_version": "1.0.8", "actions": [ { "update": { "method": "PUT", "class": "update", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/", "support_async": true, "title": "Modify" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/", "support_async": true, "title": "Delete" } }, { "clone": { "method": "GET", "class": "clone", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/clone/?schema=&schema_rules=true", "support_async": false, "title": "Clone" } }, { "export": { "method": "GET", "class": "export", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/export/", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/", "submit": "payload" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/+tag/", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/" } }, { "tag_version": { "method": "PATCH", "class": "tag_version", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/+tag_version/", "support_async": true, "title": "Tag Version", "view": "/api/view/TagVersionForm/add/" } }, { "get": { "method": "GET", "class": "get", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/", "support_async": false, "title": "Get" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/help", "support_async": false, "title": "Help" } } ], "summary": "false" }, "pkid": "5abb946aaffa931ce72a7442" }, { "data": { "name": "HcsAdminMenu", "menu_items": [ { "title": "Hierarchy Management", "icon": "business", "display": "list", "menu_items": [ { "title": "Localization Language", "display": "list", "type": "data/LanguageDefault" } ] }, { "title": "Provider Management", "icon": "language", "display": "list", "menu_items": [ { "title": "Providers", "display": "list", "type": "relation/HcsProviderREL" }, { "title": "Delete Provider", "display": "form", "type": "view/HcsDeleteProviderVIEW" } ] }, { "title": "User Management", "icon": "person", "display": "list", "menu_items": [ { "title": "Admins", "display": "list", "type": "relation/User", "field_display_policy": "AdminUser", "filter_options": [ { "filter_by": "user_type", "filter_type": "contains", "filter_string": "Admin" } ] } ] }, { "title": "Role Management", "icon": "web", "display": "list", "menu_items": [ { "title": "Roles", "display": "list", "type": "relation/HcsRoleREL", "field_display_policy": "HcsRoleRelFDP" }, { "title": "Authorized Admin Hierarchy", "display": "list", "type": "data/AuthorizedAdminHierarchy" }, { "title": "Themes", "display": "list", "type": "tool/Theme" }, { "title": "Menu Layouts", "display": "list", "type": "data/MenuLayout" }, { "title": "Menu Diff Tool (Portal only)", "display": "form", "type": "view/MenuDiff" }, { "title": "Dashboards", "display": "list", "type": "data/Dashboard" }, { "title": "Access Profiles", "display": "list", "type": "data/AccessProfile" }, { "title": "Access Profile Merge Tool", "display": "form", "type": "view/AccessProfileTool" }, { "title": "Credential Policy", "display": "list", "type": "data/CredentialPolicy" }, { "title": "Default Credential Policy", "display": "list", "type": "data/HierarchyDefault" }, { "title": "Business Admin Portal Profiles", "display": "list", "type": "data/InterfaceBusinessAdminPortal" }, { "title": "Self Service Feature Display Policy", "display": "list", "type": "data/SelfServiceFeatureDisplayPolicy" }, { "title": "Self Service Links", "display": "list", "type": "data/SelfServiceLinks" }, { "title": "Privacy Policy Configuration", "display": "list", "type": "data/PrivacyPolicy" } ] }, { "title": "Flow Through Provisioning Configuration", "display": "list", "menu_items": [ { "title": "Subscriber Profiles", "display": "list", "type": "data/SubscriberProfile" }, { "title": "Model Filter Criteria", "display": "list", "type": "data/ModelFilterCriteria" }, { "title": "FTP Provisioning Criteria", "display": "list", "type": "data/FlowThroughProvisioningCriteria" }, { "title": "Global Settings", "display": "form", "type": "view/GlobalSettings", "field_display_policy": "FTP" }, { "title": "Site Defaults Settings", "display": "list", "type": "data/SiteDefaultsDoc", "field_display_policy": "FTP" } ] }, { "title": "Entitlement", "icon": "explicit", "display": "list", "menu_items": [ { "title": "Device Types", "display": "list", "type": "data/HcsDeviceTypeDAT" } ] }, { "title": "Customizations", "icon": "subtitles", "display": "list", "menu_items": [ { "title": "Global Settings", "display": "form", "type": "view/GlobalSettings" }, { "title": "Field Display Policies", "display": "list", "type": "data/FieldDisplayPolicy" }, { "title": "Configuration Templates", "display": "list", "type": "data/ConfigurationTemplate" }, { "title": "Business Admin Portal Profiles", "display": "list", "type": "data/InterfaceBusinessAdminPortal" }, { "title": "Self Service Feature Display Policy", "display": "list", "type": "data/SelfServiceFeatureDisplayPolicy" }, { "title": "Self Service Links", "display": "list", "type": "data/SelfServiceLinks" }, { "title": "Move Phones", "display": "list", "type": "data/HcsMovePhoneCustomizationsDAT" }, { "title": "Subscriber Profiles", "display": "list", "type": "data/SubscriberProfile" }, { "title": "Phone Configuration Mapping", "display": "list", "type": "data/PhoneConfigMapping" }, { "title": "DeviceProfile Configuration Mapping", "display": "list", "type": "data/DeviceProfileConfigMapping" }, { "title": "Line Configuration Mapping", "display": "list", "type": "data/LineConfigMapping" } ] }, { "title": "Number Management", "display": "list", "menu_items": [ { "title": "Number Inventory", "display": "list", "type": "relation/NumberInventoryREL" }, { "title": "Number Range Management", "display": "form", "type": "view/NumberInventoryRangeMgmtVIEW", "field_display_policy": "NumberInventoryRangeMgmtViewFDP" }, { "title": "Cooling & Reservation", "display": "form", "type": "view/IniCoolingMgmtVIEW", "field_display_policy": "IniCoolingMgmtFDP" }, { "title": "Audit Number Inventory", "display": "form", "type": "view/NumberInventoryAudit" }, { "title": "Purge Number Inventory", "display": "form", "type": "view/INI_Purge_Tool_View" }, { "title": "E164 Inventory", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "list", "type": "data/HcsDpE164InventoryDAT", "field_display_policy": "HcsDpE164InventoryDatFDP" }, { "title": "Add E164 Inventory", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "form", "type": "view/HcsE164InventoryMgmtView" }, { "title": "E164 Associations ( N to N DN )", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "list", "type": "relation/HcsDNE164AssociateREL", "field_display_policy": "HcsDpDNE164AssociateRelFDP" }, { "title": "E164 Associations ( N to 1 DN )", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "list", "type": "relation/HcsDNMultiE164AssociateREL", "field_display_policy": "HcsDNMultiE164AssociateRelFDP" } ] }, { "title": "Dial Plan", "icon": "settings_phone", "display": "list", "menu_items": [ { "title": "Dial Plan Schema", "display": "list", "type": "data/HcsDpDialPlanSchemaDAT" }, { "title": "Dial Plan Schema Group", "display": "list", "type": "data/HcsDpDialPlanSchemaGroupDAT" } ] }, { "title": "Administration Tools", "icon": "settings", "display": "list", "menu_items": [ { "title": "Import", "display": "form", "type": "tool/DataImport" }, { "title": "Bulk Load", "display": "form", "type": "tool/BulkLoad" }, { "title": "Alerts", "display": "list", "type": "data/Alert" }, { "title": "Transaction Overview", "description": "A dashboard providing an overview of key transaction metrics.", "display": "dashboard", "dashboard": "Transaction Overview" }, { "title": "Transaction", "display": "list", "type": "tool/Transaction" }, { "title": "Overview Tool", "condition": "{{ macro.IsEnterpriseDeploymentMCR }}", "display": "form", "type": "view/OverbuildOverview" }, { "title": "Macro Evaluator", "display": "form", "href": "/api/tool/Macro" }, { "title": "Model Type Lists", "display": "list", "type": "data/ModelTypeList" }, { "title": "Model Instance Filters", "display": "list", "type": "data/ModelInstanceFilter" }, { "title": "Data Sync", "display": "list", "type": "data/DataSync" }, { "title": "Scheduling", "display": "list", "type": "data/Schedule" }, { "title": "Bulk Enable/Disable Schedules", "display": "form", "type": "view/BulkScheduleTool" }, { "title": "File Management", "display": "list", "type": "data/File" }, { "title": "Reports", "display": "list", "menu_items": [ { "title": "Create Line Report", "display": "form", "type": "view/HcsLineReportVIEW" }, { "title": "Line Reports", "display": "list", "type": "data/HcsLineReportDAT", "field_display_policy": "HcsLineReportDatFDP" }, { "title": "Audit Template Customizations", "display": "form", "type": "view/HcsAuditTemplateVIEW" }, { "title": "Template Customization Reports", "condition": "{{ macro.IsEnterpriseDeploymentMCR }}", "display": "list", "href": "/api/data/HcsCustomTemplatesLogDAT/?order_by=timestamp&direction=desc" }, { "title": "Template Customization Reports", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "list", "type": "data/HcsCustomTemplatesLogDAT" } ] }, { "title": "System Monitoring", "display": "list", "menu_items": [ { "title": "Model Counts", "display": "list", "type": "data/MetricResourceCount" }, { "title": "Login Sessions", "display": "list", "type": "data/MonitoringSessions" }, { "title": "Worker Queue", "display": "list", "type": "data/MonitoringQueue" }, { "title": "Call Manager", "display": "list", "type": "data/MonitoringCucm" }, { "title": "Unity Connection", "display": "list", "type": "data/MonitoringCuc" }, { "title": "LDAP", "display": "list", "type": "data/MonitoringLdap" } ] }, { "title": "System Settings", "display": "form", "type": "view/DataSettings" } ] }, { "title": "Advanced Tools", "icon": "build", "display": "list", "menu_items": [ { "title": "Custom Variables", "display": "list", "type": "data/StaticVariable" }, { "title": "Model Report", "display": "list", "menu_items": [ { "title": "Create Model Report", "display": "form", "type": "view/ModelReportVIEW" }, { "title": "Model Reports", "display": "list", "type": "data/ModelReport" } ] } ] }, { "title": "Single Sign On", "icon": "input", "display": "list", "menu_items": [ { "title": "SSO SP Settings", "display": "list", "type": "relation/HcsSsoSpREL", "field_display_policy": "SsoSpRelFDP", "configuration_template": "HcsSpFormCFT" }, { "title": "Certificate Management", "display": "list", "type": "data/Certificate", "field_display_policy": "CertFDP" }, { "title": "SSO SP Metadata", "display": "list", "type": "data/HcsSpMetadataDAT", "field_display_policy": "SpMetadataFDP" } ] }, { "title": "About", "icon": "laptop", "display": "list", "menu_items": [ { "title": "Version", "display": "form", "type": "view/HcsVersionVIEW", "field_display_policy": "VersionViewFDP" }, { "title": "Patches", "display": "list", "type": "data/Patch" }, { "title": "Adaptations", "display": "list", "type": "data/adaptation_log" }, { "title": "License", "condition": "{{ macro.IsProviderDeploymentMCR }}", "display": "form", "type": "view/AboutLicense" }, { "title": "License Counts", "display": "list", "type": "data/LicenseAuditCounts" } ] } ], "pkid": "5ad5cd40affa9343e4d9745e", "hierarchy_friendly_name": "hcs (Hcs)", "hierarchy_path": "sys.hcs" }, "meta": { "model_type": "data/MenuLayout", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [ { "pkid": "5ad5cd40affa9343e4d9745f", "version": "0.1.1", "href": "/api/v0/data/MenuLayout/5ad5cd40affa9343e4d97447/?cached=5ad5cd40affa9343e4d9745f" } ], "tags": [ "V4UC", "ba_ProviderOverlay" ], "title": "HcsAdminMenu", "business_key": { "hierarchy": true, "unique": [ "name" ] }, "api_version": "21.2", "cached": true, "references": { "device": [ { "href": "", "pkid": "" } ], "owner": [ { "pkid": "" } ], "parent": [ { "pkid": "5ad5bacbaffa9343e4d93e01", "href": "/api/data/HierarchyNode/5ad5bacbaffa9343e4d93e01" } ], "foreign_key": [ { "pkid": "66787644fa938def24629052", "path": "menu_items.0.icon", "model_type": "data/Icons" }, { "pkid": "66787676fa938def246295e3", "path": "menu_items.1.icon", "model_type": "data/Icons" }, { "pkid": "66787688fa938def2462985b", "path": "menu_items.2.icon", "model_type": "data/Icons" }, { "path": "menu_items.2.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "667876b1fa938def24629d45", "path": "menu_items.3.icon", "model_type": "data/Icons" }, { "path": "menu_items.3.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.4.menu_items.3.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.4.menu_items.4.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787656fa938def246292a6", "path": "menu_items.5.icon", "model_type": "data/Icons" }, { "pkid": "66787c18fa938def2462c530", "path": "menu_items.6.icon", "model_type": "data/Icons" }, { "path": "menu_items.7.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.5.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.7.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.8.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "6678769afa938def24629a8b", "path": "menu_items.8.icon", "model_type": "data/Icons" }, { "pkid": "66787698fa938def24629a57", "path": "menu_items.9.icon", "model_type": "data/Icons" }, { "pkid": "66787bbafa938def2462c1ae", "path": "menu_items.9.menu_items.3.dashboard", "model_type": "data/Dashboard" }, { "path": "menu_items.9.menu_items.13.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787644fa938def2462904a", "path": "menu_items.10.icon", "model_type": "data/Icons" }, { "pkid": "66787673fa938def2462957b", "path": "menu_items.11.icon", "model_type": "data/Icons" }, { "path": "menu_items.11.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.0.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.11.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787676fa938def246295e7", "path": "menu_items.12.icon", "model_type": "data/Icons" }, { "path": "menu_items.12.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" } ], "self": [ { "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/", "pkid": "5ad5cd40affa9343e4d97447" } ] }, "path": [ "6t0ggef2c0deab00hb595101", "5ad5bacbaffa9343e4d93e01", "5ad5cd40affa9343e4d97447" ], "version_tag": "0.1.1", "system_resource": false, "schema_version": "1.0.8", "actions": [ { "update": { "method": "PUT", "class": "update", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/", "support_async": true, "title": "Modify" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/", "support_async": true, "title": "Delete" } }, { "clone": { "method": "GET", "class": "clone", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/clone/?schema=&schema_rules=true", "support_async": false, "title": "Clone" } }, { "export": { "method": "GET", "class": "export", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/export/", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/", "submit": "payload" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/+tag/", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/" } }, { "tag_version": { "method": "PATCH", "class": "tag_version", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/+tag_version/", "support_async": true, "title": "Tag Version", "view": "/api/view/TagVersionForm/add/" } }, { "get": { "method": "GET", "class": "get", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/", "support_async": false, "title": "Get" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/MenuLayout/5ad5cd40affa9343e4d97447/help", "support_async": false, "title": "Help" } } ], "summary": "false" }, "pkid": "5ad5cd40affa9343e4d97447" }, { "data": { "name": "HcsCustomerMenu", "menu_items": [ { "title": "Hierarchy Management", "icon": "business", "display": "list", "menu_items": [ { "title": "Hierarchy", "display": "list", "type": "relation/HcsHierarchyNodeREL", "field_display_policy": "HcsGenericHnFDP" }, { "title": "Delete Intermediate Node", "display": "form", "type": "view/HcsDeleteIntermediateNodeVIEW" }, { "title": "Localization Language", "display": "list", "type": "data/LanguageDefault" } ] }, { "title": "Site Management", "icon": "location_city", "display": "list", "menu_items": [ { "title": "Sites", "display": "list", "type": "relation/HcsSiteREL" }, { "title": "Defaults", "display": "list", "type": "data/SiteDefaultsDoc", "field_display_policy": "No Overbuild tab" }, { "title": "Delete Site", "display": "form", "type": "view/HcsDeleteSiteVIEW" }, { "title": "Associate SIP Local Gateway", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "type": "relation/HcsAssociateSipLocalGwToSiteREL" } ] }, { "title": "Device Management", "icon": "storage", "display": "list", "menu_items": [ { "title": "Customer Equipment", "display": "list", "type": "relation/HcsCustomerEquipmentREL", "field_display_policy": "HcsCustomerEquipmentRelFDP", "filter_options": [ { "filter_by": "bkCustomerLocation_shortName", "filter_type": "notequal", "filter_string": "Internal_Reserved" } ] }, { "title": "IOS", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "IOS Devices", "display": "list", "type": "relation/HcsIOSDeviceREL", "configuration_template": "HcsIosCpeRelFormCFT" }, { "title": "Analog Gateways", "display": "list", "type": "relation/HcsAnalogGatewayREL", "field_display_policy": "HcsAnalogGatewayRelFDP", "configuration_template": "HcsAnalogGateway_Menu_CFT" }, { "title": "Add port to Analog Gateway", "display": "form", "type": "view/GS_AGW_AddPort_VIEW" }, { "title": "Quick Add SIP Gateway", "display": "form", "type": "view/GS_IOSGateway_QuickAdd_View" }, { "title": "SIP Gateway Port", "display": "list", "type": "relation/GS_IOSGateway_PortData_REL" }, { "title": "SIP Local Gateways", "display": "list", "type": "relation/HcsSipGwREL", "field_display_policy": "HcsSipGwFDP" }, { "title": "Command Builder", "display": "list", "type": "data/HcsCommandBuilderDAT" }, { "title": "Commands", "display": "list", "type": "data/HcsCommandDAT" }, { "title": "Consolidate Commands", "display": "list", "type": "data/HcsIOSConsolidatedCommandDAT" } ] }, { "title": "Advanced", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "Unified CM Groups", "display": "list", "type": "relation/HcsCallManagerGroupREL", "field_display_policy": "HcsCallManagerGroupRelFDP" }, { "title": "Date Time Groups", "display": "list", "type": "relation/HcsDateTimeGroupREL", "field_display_policy": "HcsDateTimeGroupRelFDP" }, { "title": "Time Periods", "display": "list", "type": "relation/HcsTimePeriodREL", "field_display_policy": "HcsTimePeriodRelFDP" }, { "title": "Time Schedules", "display": "list", "type": "relation/HcsTimeScheduleREL", "field_display_policy": "HcsTimeScheduleRelFDP" }, { "title": "Locations", "display": "list", "type": "relation/HcsLocationREL", "field_display_policy": "HcsLocationRelFDP" }, { "title": "Regions", "display": "list", "type": "relation/HcsRegionREL", "field_display_policy": "HcsRegionRelFDP" }, { "title": "Device Pools", "display": "list", "type": "relation/HcsLocalRouteGroupREL", "field_display_policy": "HcsLocalRouteGroupRelFDP" }, { "title": "SIP Profiles", "display": "list", "type": "relation/HcsSipProfileREL", "field_display_policy": "HcsSipProfileRelFDP" }, { "title": "SIP Trunk Security Profiles", "display": "list", "type": "relation/HcsSipTrunkSecurityProfileREL", "field_display_policy": "HcsSipTrunkSecurityProfileRelFDP" }, { "title": "SIP Trunks", "display": "list", "type": "relation/HcsSipTrunkREL", "field_display_policy": "HcsSipTrunkRelFDP", "configuration_template": "HcsSipTrunkRelCFT" }, { "title": "Route Groups", "display": "list", "type": "relation/HcsRouteGroupREL", "field_display_policy": "HcsRouteGroupRELFDP" }, { "title": "Route Lists", "display": "list", "type": "relation/HcsRouteListREL", "field_display_policy": "HcsRouteListRelFDP", "configuration_template": "HcsRouteListRelCFT" }, { "title": "Route Patterns", "display": "list", "type": "relation/HcsRoutePatternREL" }, { "title": "Route Partitions", "display": "list", "type": "relation/HcsRoutePartitionREL", "field_display_policy": "HcsRoutePartitionRelFDP" }, { "title": "Calling Search Spaces", "display": "list", "type": "relation/HcsCssREL", "field_display_policy": "HcsCssRelFDP" }, { "title": "Translation Patterns", "display": "list", "type": "relation/HcsTransPatternREL" }, { "title": "Calling Party Transformation Patterns", "display": "list", "type": "relation/HcsCgPtyXformREL", "field_display_policy": "HcsCgPtyXformRelFDP" }, { "title": "Called Party Transformation Patterns", "display": "list", "type": "relation/HcsCdPtyXformREL", "field_display_policy": "HcsCdPtyXformRelFDP" }, { "title": "SIP Route Patterns", "display": "list", "type": "relation/HcsSipRoutePatternREL", "field_display_policy": "HcsSipRoutePatternRelFDP" }, { "title": "Cti Route Points", "display": "list", "type": "relation/HcsCtiRoutePointREL", "field_display_policy": "HcsCtiRoutePointRELFDP" }, { "title": "Softkey Templates", "display": "list", "type": "relation/SoftKeyTemplates", "field_display_policy": "SoftKeyTemplateFDP" }, { "title": "LDAP Sync Actions", "display": "form", "type": "view/HcsLdapSyncVIEW" }, { "title": "Clusterwide Call Park", "display": "list", "type": "relation/ClusterwideCallPark_REL" }, { "title": "Clusterwide Directed Call Park", "display": "list", "type": "relation/ClusterwideDirectedCallPark_REL" }, { "title": "Forced Authorization Codes", "display": "list", "type": "relation/GS_FAC_REL" }, { "title": "Media Resource Transcoder", "display": "list", "type": "relation/MediaResource_Transcoder_REL" }, { "title": "Media Resource MTP", "display": "list", "type": "relation/MediaResource_MTP_REL" }, { "title": "Media Resource CFB", "display": "list", "type": "relation/MediaResource_CFB_REL" }, { "title": "Meet Me", "display": "list", "type": "relation/MeetMeREL" } ] }, { "title": "CUCM Music On Hold", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "Manage Files And Upload to MOH Cluster", "display": "list", "type": "relation/WebDriverCucmClusterMohFileUpload", "filter_options": [ { "filter_by": "filename", "filter_type": "endswith", "filter_string": ".wav", "ignore_case": true } ] }, { "title": "Upload Multiple Files to MOH Clusters", "display": "form", "type": "view/WebDriverCucmClusterMohFileManagementWrapper" }, { "title": "List MOH Audio Files", "display": "list", "type": "device/cmccs/MohFile" }, { "title": "Add MOH Audio Source", "display": "form", "type": "view/WebDriverCucmClusterMohAudioSourceManagement" }, { "title": "Manage MOH Audio Source", "display": "list", "type": "device/cucm/MohAudioSource" } ] } ] }, { "title": "LDAP Management", "condition": "{{ macro.is_cisco_cucm_enabled }}", "icon": "perm_contact_calendar", "display": "list", "menu_items": [ { "title": "LDAP Server", "display": "list", "type": "relation/HcsLdapServerREL", "field_display_policy": "HcsLdapServerRelFDP", "configuration_template": "HcsLdapServerRelCFT" }, { "title": "LDAP User Sync", "display": "list", "type": "relation/HcsLdapUserSyncREL", "field_display_policy": "HcsLdapUserSyncRelFDP", "configuration_template": "HcsAdUserSyncRelCFT" }, { "title": "LDAP Schedule", "display": "list", "type": "relation/HcsLdapScheduleREL", "field_display_policy": "HcsLdapScheduleFDP" }, { "title": "Advanced", "display": "list", "menu_items": [ { "title": "LDAP Network Device", "display": "list", "type": "data/Ldap" }, { "title": "CUCM LDAP Directory", "display": "list", "type": "device/cucm/LdapDirectory" }, { "title": "CUCM LDAP Directory Sync", "display": "form", "type": "view/doLdapSync" } ] } ] }, { "title": "Entitlement", "condition": "{{ macro.is_cisco_cucm_enabled }}", "icon": "explicit", "display": "list", "menu_items": [ { "title": "Device Groups", "display": "list", "type": "data/HcsDeviceGroupDAT", "field_display_policy": "HcsDeviceGroupDatReadOnlyFDP" }, { "title": "Catalogs", "display": "list", "type": "data/HcsEntitlementCatalogDAT", "field_display_policy": "HcsEntitlementCatalogDatReadOnlyFDP" }, { "title": "Profiles", "display": "list", "type": "data/HcsEntitlementProfileDAT", "field_display_policy": "HcsEntitlementProfileDatReadOnlyFDP" } ] }, { "title": "User Management", "icon": "person", "display": "list", "menu_items": [ { "title": "Users", "display": "list", "type": "relation/User", "field_display_policy": "default" }, { "title": "User Services", "display": "list", "menu_items": [ { "title": "Multi Vendor Subscribers", "display": "list", "type": "relation/MultiVendorSubscribers", "filter_options": [ { "filter_by": "user_type", "filter_type": "notequal", "filter_string": "Admin" } ] }, { "title": "QAS - MS Teams", "display": "form", "type": "view/QuickSubscriberForMsTeamsMultiVendor" } ] }, { "title": "Sync & Purge", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "LDAP Users", "display": "form", "type": "view/HcsSyncUsersVIEW", "configuration_template": "HcsSyncUsersViewCFT" }, { "title": "LDAP Re-Provision Users", "display": "form", "type": "view/ReSyncLdapUsersVIEW" }, { "title": "CUCM Users, Lines, Phones", "display": "form", "type": "view/HcsSyncUsersPhonesVIEW", "configuration_template": "HcsSyncUsersPhonesViewCFT" }, { "title": "Local-Purge CUCM User", "display": "form", "type": "view/PurgeCucmUser" } ] }, { "title": "Manage Filters", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "Define Filters", "display": "list", "type": "data/HcsMoveFilterDAT" }, { "title": "Filter Order", "display": "list", "type": "data/HcsMoveFilterOrderDAT" } ] }, { "title": "Self Provisioning", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "User Profile", "display": "list", "type": "relation/UserSelfProvisioning", "field_display_policy": "USP-FDP", "configuration_template": "USP_Menu_CFT" }, { "title": "Line Mask", "display": "list", "type": "data/HcsSelfProvisioningDAT", "configuration_template": "HcsSelfProvisioningDefaultsCFT" }, { "title": "Universal Device Template", "display": "list", "type": "device/cucm/UniversalDeviceTemplate", "field_display_policy": "DefaultUniversalDeviceTemplateFDP", "configuration_template": "UDT_Menu_CFT" }, { "title": "Universal Line Template", "display": "list", "type": "device/cucm/UniversalLineTemplate", "field_display_policy": "DefaultUniversalLineTemplateFDP", "configuration_template": "ULT_Menu_CFT" } ] }, { "title": "Move Users", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "form", "type": "view/HcsMoveUsersVIEW" }, { "title": "Admins", "display": "list", "type": "relation/User", "field_display_policy": "AdminUser", "filter_options": [ { "filter_by": "user_type", "filter_type": "contains", "filter_string": "Admin" } ] }, { "title": "Log Messages", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "Subscriber Move logs", "display": "list", "type": "data/HcsSubscriberMoveLogDAT" }, { "title": "User Management logs", "display": "list", "type": "data/HcsUserManagementLogDAT" } ] }, { "title": "Advanced", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "menu_items": [ { "title": "LDAP Users (user)", "display": "list", "type": "device/ldap/user" }, { "title": "LDAP Users (person)", "display": "list", "type": "device/ldap/person" }, { "title": "LDAP Users (inetOrgPerson)", "display": "list", "type": "device/ldap/inetOrgPerson" }, { "title": "CUCM Users (User)", "display": "list", "type": "device/cucm/User" }, { "title": "CUC Users (User)", "display": "list", "type": "device/cuc/User" }, { "title": "UCCX Users (Agent)", "display": "list", "type": "device/uccx/Agent" }, { "title": "Webex App Users (User)", "display": "list", "type": "device/spark/User" }, { "title": "Pexip Conference Users", "display": "list", "type": "relation/PexipConference" }, { "title": "Convert to Local CUCM user", "display": "form", "type": "view/ConvertUserType_CUCMLDAP_Local" } ] } ] }, { "title": "Role Management", "icon": "web", "display": "list", "menu_items": [ { "title": "Credential Policy", "display": "list", "type": "data/CredentialPolicy" }, { "title": "Default Credential Policy", "display": "list", "type": "data/HierarchyDefault" }, { "title": "Authorized Admin Hierarchy", "display": "list", "type": "data/AuthorizedAdminHierarchy" } ] }, { "title": "Cisco Dial Plan Management", "condition": "{{ macro.is_cisco_cucm_enabled }}", "icon": "settings_phone", "display": "list", "menu_items": [ { "title": "Customer", "display": "list", "menu_items": [ { "title": "Dial Plan", "display": "list", "type": "relation/HcsDpManageCustomerREL", "field_display_policy": "HcsDpManageCustomerFDP" } ] }, { "title": "Site", "display": "list", "menu_items": [ { "title": "Dial Plan", "display": "list", "type": "relation/HcsDpManageSiteREL", "field_display_policy": "HcsDpManageSiteFDP" }, { "title": "Class of Service", "display": "list", "type": "relation/HcsDpClassOfServiceREL" }, { "title": "Short Code", "display": "list", "type": "relation/HcsDpSiteShortCodeREL", "field_display_policy": "HcsDpSiteShortCodeFDP" }, { "title": "Directory Number Routing", "display": "list", "type": "relation/HcsDpDnRangeREL", "field_display_policy": "HcsDpDnRangeFDP" }, { "title": "SIP Route Pattern", "display": "list", "type": "relation/HcsDpSipRoutePatternREL", "field_display_policy": "HcsDpSipRoutePatternFDP" } ] } ] }, { "title": "Number Management", "display": "list", "menu_items": [ { "title": "Number Inventory", "display": "list", "type": "relation/NumberInventoryREL" }, { "title": "Number Range Management", "display": "form", "type": "view/NumberInventoryRangeMgmtVIEW", "field_display_policy": "NumberInventoryRangeMgmtViewFDP" }, { "title": "Cooling & Reservation", "display": "form", "type": "view/IniCoolingMgmtVIEW", "field_display_policy": "IniCoolingMgmtFDP" }, { "title": "Audit Number Inventory", "display": "form", "type": "view/NumberInventoryAudit" }, { "title": "E164 Inventory", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "type": "data/HcsDpE164InventoryDAT", "field_display_policy": "HcsDpE164InventoryDatFDP" }, { "title": "Add E164 Inventory", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "form", "type": "view/HcsE164InventoryMgmtView" }, { "title": "E164 Associations ( N to N DN )", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "type": "relation/HcsDNE164AssociateREL", "field_display_policy": "HcsDpDNE164AssociateRelFDP" }, { "title": "E164 Associations ( N to 1 DN )", "condition": "{{ macro.is_cisco_cucm_enabled }}", "display": "list", "type": "relation/HcsDNMultiE164AssociateREL", "field_display_policy": "HcsDNMultiE164AssociateRelFDP" } ] }, { "title": "Cisco Subscriber Management", "condition": "{{ macro.is_cisco_cucm_enabled }}", "icon": "people", "display": "list", "menu_items": [ { "title": "Subscriber Overview", "description": "A dashboard providing an overview of key subscriber metrics.", "display": "dashboard", "dashboard": "Subscriber Overview" }, { "title": "Quick Add Subscriber", "display": "form", "type": "view/QuickSubscriber" }, { "title": "Add Subscriber from Profile", "display": "form", "type": "view/AddSubscriberFromProfile", "field_display_policy": "default" }, { "title": "Subscribers", "display": "list", "type": "relation/Subscriber", "field_display_policy": "SubscriberAdvancedDefault", "configuration_template": "Subscriber_Menu_CFT" }, { "title": "Multi Vendor Subscribers", "display": "list", "type": "relation/MultiVendorSubscribers", "filter_options": [ { "filter_by": "user_type", "filter_type": "notequal", "filter_string": "Admin" } ] }, { "title": "QAS - MS Teams", "display": "form", "type": "view/QuickSubscriberForMsTeamsMultiVendor" }, { "title": "Move Subscriber", "display": "form", "type": "view/UserPhoneMoveUsers_VIEW" }, { "title": "Phones", "display": "list", "type": "relation/SubscriberPhone", "field_display_policy": "SubscriberPhoneMenuItemCustomer", "configuration_template": "SubscriberPhonePrePopulate" }, { "title": "Headsets", "display": "list", "menu_items": [ { "title": "Inventory", "display": "list", "type": "device/genericcucm/HeadsetInventory", "field_display_policy": "default" }, { "title": "Templates", "display": "list", "type": "device/genericcucm/HeadsetTemplate" } ] }, { "title": "Phone Status Export", "display": "form", "type": "view/ExportDeviceStatusView", "field_display_policy": "ExportDeviceStatusFDP" }, { "title": "Smart Add Phone", "display": "form", "type": "view/SmartAddPhone" }, { "title": "VOSS Phones", "condition": "{{ macro.is_voss_phones_enabled }}", "display": "list", "type": "relation/PRS_MultiVendorPhone_REL" }, { "title": "Line Search", "display": "form", "type": "view/LineSearch" }, { "title": "Lines", "display": "list", "type": "relation/LineRelation", "field_display_policy": "LineMenuFDPCust", "configuration_template": "Line_CFT" }, { "title": "Intercom Lines", "display": "list", "type": "relation/IntercomLineRelation", "field_display_policy": "Intercom_LineRelation_FDP", "configuration_template": "Intercom_Line_CFT", "filter_options": [ { "filter_by": "usage", "filter_type": "equals", "filter_string": "Device Intercom" } ] }, { "title": "Agent Lines", "display": "list", "type": "relation/HcsCucmCcTagREL", "field_display_policy": "HcsCucmCcTagFDP" }, { "title": "Voicemail", "display": "list", "type": "relation/Voicemail", "field_display_policy": "VoicemailRelation-FDP" }, { "title": "Extension Mobility", "display": "list", "type": "relation/SubscriberDeviceProfile", "field_display_policy": "SubscriberDeviceProfileMenuItemCustomer" }, { "title": "Single Number Reach", "description": "CUCM Single Number Reach relation", "display": "list", "type": "relation/SingleNumberReachREL", "configuration_template": "SnrRelFormMenuPreLoadCFT" }, { "title": "Add Device to User", "display": "form", "type": "view/GS_AddDeviceToUser_VIEW" }, { "title": "Remove Device from User", "display": "form", "type": "view/GS_removeDeviceFromUser_VIEW" }, { "title": "Move Phones", "display": "form", "type": "view/HcsMovePhonesVIEW" }, { "title": "Replace Phone", "display": "form", "type": "view/ReplacePhone_VIEW" }, { "title": "Reset-Restart Site Phones", "display": "form", "type": "view/Site_Phones_Reset" }, { "title": "EM Login/Logout", "display": "list", "menu_items": [ { "title": "Login User", "display": "form", "type": "view/EmLoginUser" }, { "title": "Logout User", "display": "form", "type": "view/EmLogoutUser" }, { "title": "Logout User from Phones", "display": "form", "type": "view/EmLogoutUserFromPhones" } ] }, { "title": "Quick Add Subscriber Groups", "display": "list", "type": "data/QuickAddGroups" }, { "title": "Class Of Service", "display": "list", "type": "data/ClassOfService" }, { "title": "Reset UC Passwords", "display": "form", "type": "view/ResetUCPasswordPinVIEW" }, { "title": "WebEx", "display": "list", "type": "device/webex/User", "field_display_policy": "webexuser-fdp" }, { "title": "Pexip Conference Users", "display": "list", "type": "relation/PexipConference" }, { "title": "Reassign User Services", "display": "list", "menu_items": [ { "title": "Reassign User Services", "display": "form", "type": "view/ReassignServicesVIEW" }, { "title": "Update User Services", "display": "form", "type": "view/ReassignServicesUpdateVIEW" }, { "title": "Reassign Services Profile", "display": "list", "type": "data/ReassignServicesProfile" } ] }, { "title": "PLAR (Hotdial)", "display": "list", "type": "domain/HotdialDomain", "field_display_policy": "HotdialFDPMenuItemCustAdmin" }, { "title": "Hunt Groups", "display": "list", "type": "relation/HuntGroupRelation", "configuration_template": "HuntGroupsPrePopulate" }, { "title": "Cross Site Hunt Groups", "display": "list", "type": "relation/GS_CrossSiteHuntGroup-HuntGroupRelation_REL", "field_display_policy": "HuntGroupFDPMenuItem", "configuration_template": "GS_CrossSiteHuntGroup-HuntGroupsPrePopulate-CFT" }, { "title": "Call Pickup Groups", "display": "list", "type": "relation/CallPickupGroups", "field_display_policy": "CPGMenuFDP-CustFDP", "configuration_template": "CPGPrePopulate" }, { "title": "Contact Center", "display": "list", "menu_items": [ { "title": "Agent Profiles", "display": "list", "type": "data/UccxAgentProfile" }, { "title": "Agents", "display": "list", "type": "relation/UccxAgent" }, { "title": "Teams", "display": "list", "type": "device/uccx/Team" }, { "title": "Resource Groups", "display": "list", "type": "device/uccx/ResourceGroup" }, { "title": "Skills", "display": "list", "type": "device/uccx/Skill" }, { "title": "Contact Service Queues", "display": "list", "type": "device/uccx/ContactServiceQueue" }, { "title": "Agent Profiles", "display": "list", "type": "data/UccxAgentProfile" }, { "title": "Re-skill Agents", "display": "form", "type": "view/AddUccxSkillsToAgents" }, { "title": "Re-skill Team", "display": "form", "type": "view/AddUccxSkillsToTeam" }, { "title": "Re-skill Resource Group", "display": "form", "type": "view/AddUccxSkillsToResourceGroup" } ] } ] }, { "title": "Cisco Webex App", "condition": "{{ macro.is_cisco_webex_teams_enabled }}", "display": "list", "menu_items": [ { "title": "Users", "display": "list", "type": "relation/SparkUser", "field_display_policy": "SparkUserFDP" }, { "title": "Quick Subscriber", "display": "form", "type": "view/WebexTeamsSubscriberQas" }, { "title": "Bulk Update Webex App Users", "display": "form", "type": "view/BulkUpdateWebexTeamsUser" }, { "title": "Workspaces", "display": "list", "type": "relation/WebexTeamsPlace" }, { "title": "Workspace Call Settings", "display": "list", "type": "relation/WebexWorkspaceCallSettings" }, { "title": "Webex Locations", "display": "list", "type": "relation/WebexLocation" }, { "title": "Webex Location Calling Details", "display": "list", "type": "relation/WebexLocationCallingDetails" }, { "title": "Webex Location Node Mapping", "display": "list", "type": "data/WebexLocationNodeMapping" }, { "title": "Webex Bulk Actions", "display": "form", "type": "view/WebexBulkActions" }, { "title": "Webex Schedules", "display": "list", "type": "relation/WebexSchedules" }, { "title": "Devices", "display": "list", "type": "relation/WebexDevice" }, { "title": "Quick Add Device", "display": "form", "type": "view/QuickAddWebexDevice" }, { "title": "Replace Device", "display": "form", "type": "view/WebexReplaceDevice" }, { "title": "Reset Devices to Baseline", "display": "form", "type": "view/WebexDeviceRefresh" }, { "title": "Device Configuration Profiles", "display": "list", "type": "data/RoomosDeviceConfigurationProfile" }, { "title": "Test Device Configuration Profile Rendering", "display": "form", "type": "view/RenderRoomosDeviceConfigurationProfile" }, { "title": "Reset Device Schedule Configuration Template", "display": "list", "type": "data/ConfigurationTemplate", "filter_options": [ { "filter_by": "name", "filter_type": "equals", "filter_string": "WebexDeviceRefreshSchedule_CFT" } ] }, { "title": "Licenses", "display": "list", "type": "device/spark/License" }, { "title": "Roles", "display": "list", "type": "device/spark/Role" }, { "title": "Call Pickup", "display": "list", "type": "relation/WebexCallPickup" }, { "title": "Call Park", "display": "list", "type": "relation/WebexCallParkGroup" }, { "title": "Hunt Groups", "display": "list", "type": "relation/WebexHuntGroup" }, { "title": "Auto Attendants", "display": "list", "type": "relation/WebexAutoAttendants" } ] }, { "title": "MS Subscriber Management", "condition": "{{ macro.is_microsoft_enabled }}", "display": "list", "menu_items": [ { "title": "Subscriber Overview", "description": "A dashboard providing an overview of key subscriber metrics.", "display": "dashboard", "dashboard": "Subscriber Overview" }, { "title": "Quick Add Groups", "display": "list", "type": "data/QuickAddGroups" }, { "title": "Licenses", "display": "list", "type": "device/msgraph/MsolAccountSku" }, { "title": "Subscribers", "display": "list", "type": "relation/MicrosoftSubscriber" }, { "title": "User Calling Settings", "display": "list", "type": "device/msteamsonline/CsOnlineUser", "field_display_policy": "CsOnlineUser_CsCallingSettings_FDP" }, { "title": "User Voicemail Settings", "display": "list", "type": "device/msteamsonline/CsOnlineUser", "field_display_policy": "CsOnlineUser_VoicemailSettings_FDP" }, { "title": "Quick Subscriber", "display": "form", "type": "view/MicrosoftSubscriberQas" }, { "title": "Quick Offboard Subscriber", "display": "form", "type": "view/MicrosoftSubscriberQos" }, { "title": "Subscriber Staging", "display": "list", "type": "relation/MicrosoftSubscriberQasStaging" }, { "title": "Groups", "display": "list", "type": "device/msgraph/Group", "field_display_policy": "default_groups", "filter_options": [ { "filter_by": "isTeam", "filter_type": "equals", "filter_string": "False" } ] }, { "title": "Teams", "display": "list", "type": "device/msgraph/Group", "field_display_policy": "default_teams", "configuration_template": "EnableTeams", "filter_options": [ { "filter_by": "isTeam", "filter_type": "equals", "filter_string": "True" } ] }, { "title": "Manage Group Membership", "display": "form", "type": "view/MsGraphManageGroup" }, { "title": "Call Queues", "display": "list", "type": "device/msteamsonline/CsCallQueue" }, { "title": "Holidays", "display": "list", "type": "device/msteamsonline/Holiday" }, { "title": "Auto Attendants", "display": "list", "type": "device/msteamsonline/CsAutoAttendant" }, { "title": "Exchange", "display": "list", "menu_items": [ { "title": "User Mailboxes", "display": "list", "type": "device/msexchangeonline/UserMailbox" }, { "title": "Shared Mailboxes", "display": "list", "type": "device/msexchangeonline/SharedMailbox" }, { "title": "Room Mailboxes", "display": "list", "type": "device/msexchangeonline/RoomMailbox" }, { "title": "Distribution Groups", "display": "list", "type": "device/msexchangeonline/DistributionGroup" } ] }, { "title": "External Access", "display": "list", "type": "device/msteamsonline/CsTenantFederationConfiguration" }, { "title": "Advanced", "display": "list", "menu_items": [ { "title": "Azure AD User (MSOL)", "display": "list", "type": "device/msgraph/MsolUser", "field_display_policy": "AzureAD_MsolUser_FDP" }, { "title": "MS Teams User (CSOL)", "display": "list", "type": "device/msteamsonline/CsOnlineUser", "field_display_policy": "MSTeamsOnline_CsolUser_FDP" }, { "title": "Emergency Location Ops Tool", "display": "form", "type": "view/MicrosoftNumberEmergencyLocation" } ] } ] }, { "title": "MS Teams Emergency Management", "condition": "{{ macro.is_microsoft_enabled }}", "icon": "call", "display": "list", "menu_items": [ { "title": "Emergency Locations", "display": "list", "type": "relation/EmergencyLocation" }, { "title": "Emergency Location Networks", "display": "list", "type": "relation/EmergencyLocationNetwork" }, { "title": "Civic Address", "display": "list", "type": "device/msteamsonline/CsOnlineLisCivicAddress" }, { "title": "Network Site", "display": "list", "type": "device/msteamsonline/CsTenantNetworkSite" }, { "title": "Network Regions", "display": "list", "type": "device/msteamsonline/CsTenantNetworkRegion" }, { "title": "Network Subnet", "display": "list", "type": "device/msteamsonline/CsTenantNetworkSubnet" }, { "title": "Trusted IP Address", "display": "list", "type": "device/msteamsonline/CsTenantTrustedIPAddress" } ] }, { "title": "Hybrid Cisco-Microsoft Management", "condition": "{{ macro.is_cisco_microsoft_enabled }}", "icon": "people", "display": "list", "menu_items": [ { "title": "Hybrid Subscriber Management: Cisco-Microsoft", "display": "form", "type": "view/HybridMultiVendorVIEW" }, { "title": "Hybrid Multi-Vendor Move", "display": "form", "type": "view/MultiVendorServiceUserMove_VIEW" } ] }, { "title": "Services", "condition": "{{ macro.is_cisco_cucm_enabled }}", "icon": "pages", "display": "list", "menu_items": [ { "title": "Voice Mail", "display": "list", "menu_items": [ { "title": "Pilot Numbers", "display": "list", "type": "relation/HcsDpVmPilotREL" }, { "title": "Associate Pilot Number to Site", "display": "list", "type": "relation/HcsDpAssociateVmPilotToSiteREL" } ] }, { "title": "Auto Attendant", "display": "list", "menu_items": [ { "title": "Call Handler", "display": "list", "type": "relation/CallhandlerREL", "filter_options": [ { "filter_by": "IsPrimary", "filter_type": "equals", "filter_string": "false" } ] }, { "title": "Manage Greeting Files", "display": "list", "type": "data/File", "filter_options": [ { "filter_by": "filename", "filter_type": "endswith", "filter_string": ".wav", "ignore_case": true } ] }, { "title": "Schedule", "display": "list", "type": "relation/CucScheduleREL", "filter_options": [ { "filter_by": "DisplayName", "filter_type": "notequal", "filter_string": "Sync Schedule" } ] } ] } ] }, { "title": "Administration Tools", "icon": "settings", "display": "list", "menu_items": [ { "title": "Import", "display": "form", "type": "tool/DataImport" }, { "title": "Bulk Load", "display": "form", "type": "tool/BulkLoad" }, { "title": "Alerts", "display": "list", "type": "data/Alert" }, { "title": "Transaction Overview", "description": "A dashboard providing an overview of key transaction metrics.", "display": "dashboard", "dashboard": "Transaction Overview" }, { "title": "Transaction", "display": "list", "type": "tool/Transaction" }, { "title": "Data Sync", "display": "list", "type": "data/DataSync" }, { "title": "Scheduling", "display": "list", "type": "data/Schedule" }, { "title": "File Management", "display": "list", "type": "data/File" }, { "title": "Reports", "display": "list", "menu_items": [ { "title": "Create Line Report", "display": "form", "type": "view/HcsLineReportVIEW" }, { "title": "Line Reports", "display": "list", "type": "data/HcsLineReportDAT", "field_display_policy": "HcsLineReportDatFDP" }, { "title": "Audit Template Customizations", "display": "form", "type": "view/HcsAuditTemplateVIEW" }, { "title": "Template Customization Reports", "display": "list", "href": "/api/data/HcsCustomTemplatesLogDAT/?order_by=timestamp&direction=desc" } ] } ] }, { "title": "Single Sign On", "icon": "input", "display": "list", "menu_items": [ { "title": "SSO Identity Provider", "display": "list", "type": "relation/HcsSsoIdpREL", "field_display_policy": "HcsSsoIdpRelFDP" } ] }, { "title": "About", "icon": "laptop", "display": "list", "menu_items": [ { "title": "Version", "display": "form", "type": "view/HcsVersionVIEW", "field_display_policy": "VersionViewFDP" }, { "title": "License Counts", "display": "list", "type": "data/LicenseAuditCounts" } ] } ], "pkid": "5ad5cd4baffa9343e4d977aa", "hierarchy_friendly_name": "hcs (Hcs)", "hierarchy_path": "sys.hcs" }, "meta": { "model_type": "data/MenuLayout", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [ { "pkid": "5ad5cd4baffa9343e4d977ab", "version": "0.1.1", "href": "/api/v0/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/?cached=5ad5cd4baffa9343e4d977ab" } ], "tags": [ "V4UC", "ba_ProviderOverlay" ], "title": "HcsCustomerMenu", "business_key": { "hierarchy": true, "unique": [ "name" ] }, "api_version": "21.2", "cached": true, "references": { "device": [ { "href": "", "pkid": "" } ], "owner": [ { "pkid": "" } ], "parent": [ { "pkid": "5ad5bacbaffa9343e4d93e01", "href": "/api/data/HierarchyNode/5ad5bacbaffa9343e4d93e01" } ], "foreign_key": [ { "pkid": "66787644fa938def24629052", "path": "menu_items.0.icon", "model_type": "data/Icons" }, { "path": "menu_items.0.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "6678767cfa938def246296b7", "path": "menu_items.1.icon", "model_type": "data/Icons" }, { "path": "menu_items.1.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "667876a2fa938def24629b5f", "path": "menu_items.2.icon", "model_type": "data/Icons" }, { "path": "menu_items.2.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.1.menu_items.0.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.2.menu_items.1.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.1.menu_items.1.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.2.menu_items.1.menu_items.5.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.3.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.4.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.5.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.6.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.7.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.8.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.9.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.9.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.2.menu_items.2.menu_items.10.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.11.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.11.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.2.menu_items.2.menu_items.13.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.14.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.16.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.17.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.18.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.19.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.2.menu_items.2.menu_items.20.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787688fa938def2462983f", "path": "menu_items.3.icon", "model_type": "data/Icons" }, { "path": "menu_items.3.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.3.menu_items.0.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.3.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.3.menu_items.1.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.3.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787656fa938def246292a6", "path": "menu_items.4.icon", "model_type": "data/Icons" }, { "path": "menu_items.4.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.4.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.4.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787688fa938def2462985b", "path": "menu_items.5.icon", "model_type": "data/Icons" }, { "path": "menu_items.5.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.5.menu_items.2.menu_items.0.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.2.menu_items.2.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.4.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.5.menu_items.4.menu_items.0.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.4.menu_items.1.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.4.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.5.menu_items.4.menu_items.2.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.4.menu_items.3.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.5.menu_items.4.menu_items.3.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.5.menu_items.6.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "667876b1fa938def24629d45", "path": "menu_items.6.icon", "model_type": "data/Icons" }, { "pkid": "6678769afa938def24629a8b", "path": "menu_items.7.icon", "model_type": "data/Icons" }, { "path": "menu_items.7.menu_items.0.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.1.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.1.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.1.menu_items.3.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.7.menu_items.1.menu_items.4.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.8.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.8.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.8.menu_items.4.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.8.menu_items.6.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.8.menu_items.7.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787687fa938def24629833", "path": "menu_items.9.icon", "model_type": "data/Icons" }, { "pkid": "66787bbafa938def2462c1a6", "path": "menu_items.9.menu_items.0.dashboard", "model_type": "data/Dashboard" }, { "path": "menu_items.9.menu_items.2.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.3.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.3.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.7.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.7.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.8.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.9.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.13.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.13.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.14.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.14.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.15.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.16.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.17.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.18.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.28.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.31.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.32.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.33.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.33.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.9.menu_items.34.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.9.menu_items.34.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.10.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787bbafa938def2462c1a6", "path": "menu_items.11.menu_items.0.dashboard", "model_type": "data/Dashboard" }, { "path": "menu_items.11.menu_items.4.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.5.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.9.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.10.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.10.configuration_template", "model_type": "data/ConfigurationTemplate" }, { "path": "menu_items.11.menu_items.17.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "path": "menu_items.11.menu_items.17.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787644fa938def24629062", "path": "menu_items.12.icon", "model_type": "data/Icons" }, { "pkid": "66787687fa938def24629833", "path": "menu_items.13.icon", "model_type": "data/Icons" }, { "pkid": "66787686fa938def246297fb", "path": "menu_items.14.icon", "model_type": "data/Icons" }, { "pkid": "66787698fa938def24629a57", "path": "menu_items.15.icon", "model_type": "data/Icons" }, { "pkid": "66787bbafa938def2462c1ae", "path": "menu_items.15.menu_items.3.dashboard", "model_type": "data/Dashboard" }, { "path": "menu_items.15.menu_items.8.menu_items.1.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787673fa938def2462957b", "path": "menu_items.16.icon", "model_type": "data/Icons" }, { "path": "menu_items.16.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" }, { "pkid": "66787676fa938def246295e7", "path": "menu_items.17.icon", "model_type": "data/Icons" }, { "path": "menu_items.17.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" } ], "self": [ { "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/", "pkid": "5ad5cd4aaffa9343e4d9771b" } ] }, "path": [ "6t0ggef2c0deab00hb595101", "5ad5bacbaffa9343e4d93e01", "5ad5cd4aaffa9343e4d9771b" ], "version_tag": "0.1.1", "system_resource": false, "schema_version": "1.0.8", "actions": [ { "update": { "method": "PUT", "class": "update", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/", "support_async": true, "title": "Modify" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/", "support_async": true, "title": "Delete" } }, { "clone": { "method": "GET", "class": "clone", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/clone/?schema=&schema_rules=true", "support_async": false, "title": "Clone" } }, { "export": { "method": "GET", "class": "export", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/export/", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/", "submit": "payload" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/+tag/", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/" } }, { "tag_version": { "method": "PATCH", "class": "tag_version", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/+tag_version/", "support_async": true, "title": "Tag Version", "view": "/api/view/TagVersionForm/add/" } }, { "get": { "method": "GET", "class": "get", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/", "support_async": false, "title": "Get" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/MenuLayout/5ad5cd4aaffa9343e4d9771b/help", "support_async": false, "title": "Help" } } ], "summary": "false" }, "pkid": "5ad5cd4aaffa9343e4d9771b" } ] }
(Show the first instance)
{ "data": { "name": "default", "menu_items": [ { "title": "Hierarchy Management", "menu_items": [ { "title": "Hierarchy", "display": "list", "type": "data/HierarchyNode" }, { "title": "Hierarchy Default", "display": "list", "type": "data/HierarchyDefault" }, { "title": "Hierarchy Node Types", "display": "list", "type": "data/HierarchyNodeType" } ] }, { "title": "Network Devices", "menu_items": [ { "title": "CTX", "display": "list", "type": "data/CiscoTelePresenceExchange" }, { "title": "CUCM", "display": "list", "type": "data/CallManager" }, { "title": "CUC", "display": "list", "type": "data/UnityConnection" }, { "title": "LDAP", "display": "list", "type": "data/Ldap" }, { "title": "Lync", "display": "list", "type": "data/Lync" }, { "title": "ServiceNow", "display": "list", "type": "data/ServiceNow" }, { "title": "TMS", "display": "list", "type": "data/CiscoTMS" }, { "title": "IOS Devices", "display": "list", "type": "data/Ios" }, { "title": "PGW Devices", "display": "list", "type": "data/Pgw" }, { "title": "WebEx", "display": "list", "type": "data/WebEx" }, { "title": "CUCCE", "display": "list", "type": "data/Cucce" }, { "title": "CUCCX", "display": "list", "type": "data/Cuccx" }, { "title": "HCMF", "display": "list", "type": "data/Hcmf" }, { "title": "IMAP4", "display": "list", "type": "data/Imap" }, { "title": "SMTP", "display": "list", "type": "data/Smtp" } ] }, { "title": "Services", "menu_items": [ { "title": "Notification", "display": "list", "type": "data/NotificationService" } ] }, { "title": "Site Management", "menu_items": [ { "title": "Users", "display": "list", "type": "device/cucm/User" }, { "title": "Phones", "display": "list", "type": "device/cucm/Phone" }, { "title": "Lines", "display": "list", "type": "device/cucm/Line" }, { "title": "Mobility", "display": "list", "type": "device/cucm/DeviceProfile" }, { "title": "Voicemail", "display": "list", "type": "device/cuc/User" }, { "title": "Remote Destination Profiles", "display": "list", "type": "device/cucm/RemoteDestinationProfile" }, { "title": "Remote Destinations", "display": "list", "type": "device/cucm/RemoteDestination" }, { "title": "Line Group", "display": "list", "type": "device/cucm/LineGroup" }, { "title": "Hunt List", "display": "list", "type": "device/cucm/HuntList" }, { "title": "Hunt Pilot", "display": "list", "type": "device/cucm/HuntPilot" }, { "title": "Call Pickup Group", "display": "list", "type": "device/cucm/CallPickupGroup" }, { "title": "Call Park", "display": "list", "type": "device/cucm/CallPark" }, { "title": "Directed Call Park", "display": "list", "type": "device/cucm/DirectedCallPark" }, { "title": "Meet Me", "display": "list", "type": "device/cucm/MeetMe" }, { "title": "Device Pools", "display": "list", "type": "device/cucm/DevicePool" } ] }, { "title": "Self Service Configuration", "menu_items": [ { "title": "Feature Configuration", "display": "list", "type": "data/SelfServiceFeatureDisplayPolicy" }, { "title": "Field Names", "display": "list", "type": "data/SelfServiceTranslation" }, { "title": "External Links", "display": "list", "type": "data/SelfServiceLinks" } ] }, { "title": "Template Tools", "menu_items": [ { "title": "Macros", "display": "list", "type": "data/Macro" }, { "title": "Configuration Templates", "display": "list", "type": "data/ConfigurationTemplate" }, { "title": "GUI Rules", "display": "list", "type": "data/GUIRule" }, { "title": "Provisioning Workflows", "display": "list", "type": "data/ProvisioningWorkflow" }, { "title": "Data Models", "display": "list", "type": "data/DataModel" }, { "title": "Domain Models", "display": "list", "type": "data/DomainModel" }, { "title": "Relations", "display": "list", "type": "data/Relation" }, { "title": "Views", "display": "list", "type": "data/View" }, { "title": "Packages", "display": "list", "type": "data/Package" }, { "title": "Migration Templates", "display": "list", "type": "data/Migration" }, { "title": "Transform Templates", "display": "list", "type": "data/Transform" } ] }, { "title": "Administration Tools", "menu_items": [ { "title": "Cache Control Policy", "display": "list", "type": "data/CacheControlPolicy" }, { "title": "Import", "display": "form", "type": "tool/DataImport" }, { "title": "Theme", "display": "list", "type": "tool/Theme" }, { "title": "Saved Searches", "display": "list", "type": "data/SavedSearch" }, { "title": "Transaction", "display": "list", "type": "tool/Transaction" }, { "title": "Bulk Load", "display": "form", "type": "tool/BulkLoad" }, { "title": "License", "display": "list", "type": "tool/License" }, { "title": "Events", "display": "list", "type": "tool/Transaction", "href": "/api/tool/Transaction/?entity=data/Event&operation=execute" }, { "title": "Macro Evaluator", "display": "form", "type": "tool/Macro" }, { "title": "Reports", "display": "list", "type": "data/Report" }, { "title": "Data Sync", "display": "list", "type": "data/DataSync" }, { "title": "Scheduling", "display": "list", "type": "data/Schedule" }, { "title": "Cascade Delete", "display": "form", "type": "tool/CascadeDelete" } ] }, { "title": "Role Based Access", "menu_items": [ { "title": "Administration Users", "display": "list", "type": "data/User" }, { "title": "Authentication Proxy", "display": "list", "type": "data/AuthenticationProxy" }, { "title": "Credential Policy", "display": "list", "type": "data/CredentialPolicy" }, { "title": "User Roles", "display": "list", "type": "data/Role" }, { "title": "Access Profiles", "display": "list", "type": "data/AccessProfile" }, { "title": "Authorized Admin Hierarchy", "display": "list", "type": "data/AuthorizedAdminHierarchy" }, { "title": "Field Display Policies", "display": "list", "type": "data/FieldDisplayPolicy" }, { "title": "Themes", "display": "list", "type": "data/Theme" }, { "title": "Menu Layouts", "display": "list", "type": "data/MenuLayout" }, { "title": "Dashboards", "display": "list", "type": "data/Dashboard" } ] }, { "title": "Advanced Menu", "menu_items": [ { "title": "Model Types", "display": "tree", "href": "/api" } ] }, { "title": "System Monitoring", "display": "list", "menu_items": [ { "title": "Configuration", "display": "list", "type": "data/SystemMonitoringConfig", "field_display_policy": "Default" }, { "title": "Database Statistics", "display": "list", "type": "data/MetricDatabaseCollectionStats" }, { "title": "Model Counts", "display": "list", "type": "data/MetricResourceCount" }, { "title": "VOSS-4-UC Cluster", "display": "list", "type": "data/MonitoringCluster" }, { "title": "Login Sessions", "display": "list", "type": "data/MonitoringSessions" }, { "title": "Worker Queue", "display": "list", "type": "data/MonitoringQueue" }, { "title": "Call Manager", "display": "list", "type": "data/MonitoringCucm" }, { "title": "Unity Connection", "display": "list", "type": "data/MonitoringCuc" }, { "title": "HCMF", "display": "list", "type": "data/MonitoringHcmf" }, { "title": "LDAP", "display": "list", "type": "data/MonitoringLdap" } ] }, { "title": "About", "display": "form", "href": "/www/version.json" }, { "title": "License Info", "display": "form", "type": "tool/License" } ], "pkid": "5abb946baffa931ce72a7443" }, "meta": { "model_type": "data/MenuLayout", "summary_attrs": [ { "name": "name", "title": "Name" }, { "name": "description", "title": "Description" }, { "name": "hierarchy_friendly_name", "title": "Located At", "allow_filtering": true } ], "tagged_versions": [], "tags": [ "base", "core" ], "title": "default", "business_key": { "unique": [ "name" ], "hierarchy": true }, "api_version": "21.2", "cached": false, "references": { "device": [ { "href": "", "pkid": "" } ], "owner": [ { "pkid": "" } ], "parent": [ { "href": "/api/data/HierarchyNode/6t0ggef2c0deab00hb595101", "pkid": "6t0ggef2c0deab00hb595101" } ], "foreign_key": [ { "path": "menu_items.9.menu_items.0.field_display_policy", "model_type": "data/FieldDisplayPolicy" } ], "children": [], "self": [ { "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/", "pkid": "5abb946aaffa931ce72a7442" } ] }, "path": [ "6t0ggef2c0deab00hb595101", "5abb946aaffa931ce72a7442" ], "system_resource": true, "schema_version": "1.0.8", "actions": [ { "update": { "method": "PUT", "class": "update", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/?hierarchy=[hierarchy]", "support_async": true, "title": "Modify" } }, { "remove": { "method": "DELETE", "class": "delete", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/?hierarchy=[hierarchy]", "support_async": true, "title": "Delete" } }, { "clone": { "method": "GET", "class": "clone", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/clone/?hierarchy=[hierarchy]&schema=&schema_rules=true", "support_async": false, "title": "Clone" } }, { "export": { "method": "GET", "class": "export", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/export/?hierarchy=[hierarchy]", "support_async": false, "title": "Export", "view": "/api/view/ExportData/add/?auth_token=[authtoken], "submit": "payload" } }, { "tag": { "method": "PATCH", "class": "tag", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/+tag/?hierarchy=[hierarchy]", "support_async": true, "title": "Tag", "view": "/api/view/TagNameForm/add/?auth_token=[authtoken] } }, { "tag_version": { "method": "PATCH", "class": "tag_version", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/+tag_version/?hierarchy=[hierarchy]", "support_async": true, "title": "Tag Version", "view": "/api/view/TagVersionForm/add/?auth_token=[authtoken] } }, { "get": { "method": "GET", "class": "get", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/?hierarchy=[hierarchy]", "support_async": false, "title": "Get" } }, { "help": { "method": "GET", "class": "help", "href": "/api/data/MenuLayout/5abb946aaffa931ce72a7442/help?hierarchy=[hierarchy]", "support_async": false, "title": "Help" } } ] }, "pkid": "5abb946aaffa931ce72a7442" }
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get the on-line Help for data/MenuLayout. | GET | /api/data/MenuLayout/help | hierarchy=[hierarchy] | On-line help of Model ref.: data/MenuLayout as HTML |
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Modify | PUT | /api/data/MenuLayout/[pkid] | hierarchy=[hierarchy] | (For payload specification) |
For Bulk modification, refer to the Bulk Modify section.
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Delete | DELETE | /api/data/MenuLayout/[pkid] | hierarchy=[hierarchy] |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Clone instance with [pkid]. The schema rules are applied. | GET | /api/data/MenuLayout/[pkid]/clone/?schema=&schema_rules=true |
|
A JSON payload with:
|
GET http://[host-proxy]/api/data/MenuLayout/?hierarchy=[hierarchy]&format=json
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get a selected [export_format] of the schema and a single instance with [pkid] of data/MenuLayout; optionally with tag_version at [version] and Configuration Template as [configtemplate]. | GET | /api/data/MenuLayout/[pkid]/export |
|
The response is an attachment. Refer to the list below. |
For export_format=raw_xlsx, the response is a "raw" MS Excel spreadsheet with columns corresponding to the JSON format export and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=xlsx, the response is a MS Excel spreadsheet, formatted to show all columns and a response format:
Content-Disposition: attachment; filename=<resource_type>_<resource_name>_exportedsheet_formatted_CCYY-MM-DD_HH-MM-SS.xlsx Content-Language:en Content-Type:application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
For export_format=json, the response is a time stamped zip file of data in JSON and a response format:
Content-Disposition: attachment; filename=export_2013-05-17_14:20:19.186444.json.zip Content-Language:en Content-Type:application/x-zip
The XLSX format can be used to bulk load instances of data/MenuLayout and the JSON format can be used to import instances of data/MenuLayout.
For Bulk Export, refer to the Bulk Export section.
Task | Call | URL | Parameters | Payload |
---|---|---|---|---|
Tag | PATCH | /api/data/MenuLayout/[pkid]/+tag | hierarchy=[hierarchy] | If payload required: |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Get | GET | /api/data/MenuLayout/[pkid] | hierarchy=[hierarchy] | The data/MenuLayout instance with [pkid]. |
Task | Call | URL | Parameters | Response |
---|---|---|---|---|
Help | GET | /api/data/MenuLayout/[pkid]/help | hierarchy=[hierarchy] | The on-line Help for data/MenuLayout. |