> For the complete documentation index, see [llms.txt](https://docs.fact-finder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.fact-finder.com/integration/de/integrating-the-navigation-module/restricting-to-a-lower-navigation-level.md).

# Einschränkung auf eine niedrigere Navigationsstufe

Eine tiefere Navigation bzw. Navigation auf einer niedrigeren Ebene erfordert eine Kombination von Filtern, wenn Sie das FactFinder-Navigationsmodul zum ersten Mal aufrufen.

### Filterung für ein einfaches Datenfeld

Wenn Sie einen Aufruf für eine tiefere Navigation absenden, übergeben Sie die vollständige Filterkombination in der richtigen Reihenfolge. Wenn Sie mit Datenfeldern filtern, müssen Sie wissen, welches FactFinder-Feld jede Ebene enthält. Nehmen Sie an, die Kategorien sind gespeichert in `category0`, `category1` und `category2`, wobei `category0` die oberste Navigationsebene ist.

Wenn die Navigation beispielsweise von der obersten Kategorie `Bekleidung` zur Unterkategorie `Hosen` und dann zu `Jeans`, sollte der REST-Aufruf so aussehen:

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category0:Bekleidung&filter=category1:Hosen&filter=category2:Jeans
```

### Filtern für ein Kategoriepfad-Feld

Anhand des folgenden Schemas können Sie aus den Feldnamen und dem ausgewählten Navigationspfad alle für die tiefere Navigation erforderlichen Filter generieren.

**Schema:** FILTER\_NAME:VALUE1/VALUE2/.../VALUEX.

Bitte beachten Sie das Suffix `ROOT` nach dem Filterparameter.

In diesem Beispiel hat der resultierende Filter den Namen `categoryROOT/Bekleidung` und den Wert `Hosen`. Übergeben Sie ihn zusätzlich zum Hauptkategorienfilter. Aus Gründen der Lesbarkeit sind die Schrägstriche in den Beispiel-URLs nicht URL-kodiert.

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category:Bekleidung&filter=categoryROOT/Bekleidung:Hosen
```

```language-plaintext
../rest/{apiversion}/navigation/{channel}?filter=category:Bekleidung&filter=categoryROOT/Bekleidung:Hosen&filter=categoryROOT/Bekleidung/Hosen:Jeans
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.fact-finder.com/integration/de/integrating-the-navigation-module/restricting-to-a-lower-navigation-level.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
