v3

latestOpenAPI 3.0.22026-08-04424560.5 KB
Navigation

getNavigation

Get a navigation configuration by ID

get/v2/user/navigations/{id}

Path parameters

idstring nullable required

Navigation unique identifier - a hash of the normalized navigation payload (name + configuration). Identical navigations across orgs will have the same ID.

Example:5gbe4nkp6jsfq

The UUID of the navigation

Response

The navigation configuration

idstring nullable required

Navigation unique identifier - a hash of the normalized navigation payload (name + configuration). Identical navigations across orgs will have the same ID.

namestring required

Human-readable name for the navigation configuration

configurationNavigationConfiguration required

Navigation configuration organized by sections. Each section contains an array of navigation items.

Example response

{
  "id": "5gbe4nkp6jsfq",
  "name": "Sales Team Navigation",
  "configuration": {
    "customer_relations": [
      {
        "key": "dashboard"
      },
      {
        "key": "contact"
      }
    ],
    "configurations": [
      {
        "name": "Product Catalog",
        "subItems": [
          {
            "key": "product"
          },
          {
            "key": "price"
          }
        ]
      },
      {
        "key": "journey"
      }
    ]
  }
}