> For the complete documentation index, see [llms.txt](https://gitbook.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://gitbook.com/docs/documentation/fr/acces-au-site/adaptive-content/enabling-adaptive-content/url.md).

# URL

{% hint style="info" %}
Rendez-vous dans nos guides pour trouver un [guide complet](https://gitbook.com/docs/guides/product-guides/how-to-personalize-your-gitbook-site-using-url-parameters-and-adaptive-content) sur la configuration du contenu adaptatif avec les cookies.
{% endhint %}

Vous pouvez transmettre les données des visiteurs à vos documents via des paramètres de requête URL. Voici un aperçu de la méthode :

<table data-full-width="false"><thead><tr><th width="325.45703125">Méthode</th><th width="266.6015625">Cas d’utilisation</th><th width="206.58984375">Facilité de configuration</th><th width="202">Sécurité</th><th>Format</th></tr></thead><tbody><tr><td>Paramètres de requête <code>visitor.&#x3C;prop>=</code></td><td>Indicateurs de fonctionnalité, rôles</td><td>Facile à utiliser</td><td><span data-gb-custom-inline data-tag="emoji" data-code="274c">❌</span> Le visiteur peut remplacer les propriétés</td><td>JSON</td></tr></tbody></table>

### Paramètres de requête

Pour transmettre des données à GitBook via des paramètres URL, vous devrez inclure les données dans l’URL au format `visitor.<prop>`.

Par exemple :

```url
https://docs.acme.org/?visitor.language=fr
```

Cela vous permettra d’utiliser ces revendications dans le [éditeur de conditions](/docs/documentation/fr/acces-au-site/adaptive-content/adapting-your-content.md#working-with-the-condition-editor) sous l’objet non signé :

```javascript
visitor.claims.unsigned.language === "fr"
```

{% hint style="warning" %}
Les données transmises via des paramètres de requête doivent être définies dans votre schéma de visiteur via un [non signé](https://gitbook.com/docs/publishing-documentation/adaptive-content/enabling-adaptive-content#setting-unsigned-claims) objet. De plus, les paramètres de requête peuvent être facilement modifiés par le visiteur et conviennent mieux aux informations non sensibles.
{% endhint %}

### Tutoriel vidéo

{% embed url="<https://www.youtube.com/embed/hCd2_AAHU_I?si=jm2VOThMVh7NdJm>\_" %}


---

# 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://gitbook.com/docs/documentation/fr/acces-au-site/adaptive-content/enabling-adaptive-content/url.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.
