# Les options que l'on peut ajouter

Pour personnaliser le module grâce aux options d'affichage.&#x20;

* Afficher une ou plusieurs catégorie(s) sur une page (ou afficher une catégorie par page),&#x20;
* Afficher une ou plusieurs prestation(s) sur une page,&#x20;
* Déplier des prestations.

Pour afficher dans le module uniquement les prestations d'une ou plusieurs catégorie(s) de prestations.

```html
<script>
    window.planity = {
        key: '$apiKey',
        primaryColor: '$primaryColor',
        options: {
            serviceSetsWhitelist: ["service_set_id","service_set_id"],
        }
    };
</script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/polyfills.latest.js"></script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/app.latest.js"></script>
```

Pour afficher dans le module uniquement les prestations choisies.

```html
<script>
    window.planity = {
        key: '$apiKey',
        primaryColor: '$primaryColor',
        options: {
            servicesWhitelist: ["service_id","service_id"],
        }
    };
</script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/polyfills.latest.js"></script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/app.latest.js"></script>
```

Déplier par défaut les prestations

```html
<script>
    window.planity = {
        key: '$apiKey',
        primaryColor: '$primaryColor',
        options: {
            servicesNotCollapsed: true,
        }
    };
</script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/polyfills.latest.js"></script>
<script src="https://d2skjte8udjqxw.cloudfront.net/widget/production/2/app.latest.js"></script>
```


---

# Agent Instructions: 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:

```
GET https://planity.gitbook.io/white-label/les-options-que-lon-peut-ajouter.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
