> ## 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.

# navigate embed event

> Triggers a redirect to the path specified in the payload.

<Warning>
  Content and/or connection permissions are not automatically provided to the user during a `navigate` event. This means if you redirect a user to a dashboard or workbook, the user will need the appropriate content and/or connection permissions to view the content.
</Warning>

```json theme={null}
{
  "name": "navigate",
  "payload": {
    "path": "string"
  }
}
```

## Properties

<ParamField path="path" type="string">
  The path to redirect to.
</ParamField>

## Example

```json theme={null}
{
  "name": "navigate",
  "payload": {
    "path": "/dashboards/abcd1234"
  }
}
```
