JSON response table for navigation menus

This article explains how Cortex provides dedicated navigation menu options for your app or website. It outlines the JSON to be expected following a request to the navigation service API.

Navigation menu - field descriptions

This section details the content in the JSON response for a navigation menu, including an example of a JSON response file.

FieldTypeDescription
idStringNavigation menu’s unique ID
titleStringTitle of the menu - intended solely for Cortex administrator clarity
descriptionStringDescription of the menu - intended solely for Cortex administrator clarity
childrenArrayMenu items (see the child object table, below)
sponsorsArrayMain menu sponsor comprising three fields: an image URL, a sponsor URL link, and a text field. All are optional, although there must always be one of either the text field or image URL.

Navigation menu - child object field descriptions

Menu items are composed of the following fields:

FieldTypeDescription
idStringNavigation menu item’s unique ID
labelStringTitle of the menu
linkStringLink, can be a relative link, such as /tickets or a full external URL. This is an optional field, omitted or ‘null’ if not populated.
openInTabBooleanSpecifies whether the link should open in a new tab or not. Defaults to false
feedIdStringFeed builder ID
pcbIdStringPromo asset ID
imageContentImage object comprising five fields for: description, image URL, thumbnail URL, link URL, title and alt text. This is an optional field, omitted or null if not populated.
childrenArrayFurther nested child menu items of this menu. This is an optional field, omitted or null if not populated.
sponsorsArrayChild menu sponsor comprising three fields: an image URL, a sponsor URL link, and a text field. All are optional, although there must always be one of either the text field or image URL.

Example JSON response

The JSON for a navigation menu with one menu item is depicted in the JSON code snippet below. The fields are explained above.

Note this is a generalised representation of a JSON response, edited for clarity and demonstration purposes. It is not a real world example.

{ "data":{ "children":[ { "children":[ { "children":[ ], "id":"2842af3d-9aaf-4abf-ac61-def51b968723", "label":"Sub-item label", "image":{ "imageUrl":"https://imageurl.com/item-image.jpg", "title":"Image title" }, "link":"primary-item/sub-item", "openInTab":false } ], "id":"aa58ce7a-b501-4645-a90a-2e32858283d8", "label":"Primary item label", "link":"/primary-item", "openInTab":true, "sponsors":[ { "imageUrl":"https://imageurl.com/itemsponsor.jpg", "linkUrl":"http://www.TakeFantoHere.com/itemsponsor", "text":"Item sponsor text" } ] } ], "id":"123456789", "title":"Navigation Menu", "description":"This controls the navigation of the main site", "sponsors":[ { "imageUrl":"https://imageurl./overall-sponsor.jpg", "linkUrl":"http://www.takeFanToHere.com", "text":"Overall sponsor text" } ] } }

Did this page help you?