navigation

Get a navigation tree

Get navigation tree by navigationTreeId, for example, /v1/navigation/trees/123.

get/v1/navigation/trees/{navigationTreeId}

Path parameters

navigationTreeIdinteger required
Example:123

Navigation tree ID

Query parameters

localestring

Use enabled locale instead of default locale e.g. ?locale=de_DE.

withstring[]

The with parameter can be applied to include category in the navigationItem lists using with=category.

Includeincludes
categoryincludes category as an object into the navigation-item

Response

request successful

idinteger required
keystring required
namestring required

Example response

{
  "items": [
    {
      "type": "external",
      "category": {
        "path": "/women",
        "name": "Women",
        "slug": "women",
        "parentId": 20201,
        "properties": [
          {
            "name": "gender"
          }
        ],
        "depth": 2
      }
    }
  ]
}

Changes