> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.omni.co/feedback

```json
{
  "path": "/embed/setup/url-parameters/uiSettings",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# uiSettings

> Controls general settings of the application in embed.

In the **Embed URL Builder**, this is the **UI Settings** field.

## Syntax

```markdown theme={null}
uiSettings=<encoded_settings_object>
```

## Properties

<ParamField path="uiSettings" type="object">
  An object containing UI configuration settings. Value must be one of:

  * `"showNavigation": false` - Hides the left navigation panel and the navigation icon in the top-left corner of the app
  * `"showNavigation": true` - Shows the left navigation panel and the navigation icon in the top-left corner of the app
</ParamField>

## Examples

The following example demonstrates what the URL encoded version of `uiSettings={"showNavigation": false}` would be:

```markdown title="Example uiSettings" theme={null}
uiSettings=%7B%22showNavigation%22%3A%20false%7D
```
