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

# embedded.navigated

> Emitted when the embedded navigate method is successfully called.

## Event Properties

| Field          | Value                  |
| -------------- | ---------------------- |
| `event`        | `"embedded.navigated"` |
| `confidential` | `boolean`              |
| `payload`      | `object`               |

<Tabs>
  <Tab title="Public Payload">
    | Field  | Type     | Description                      |
    | ------ | -------- | -------------------------------- |
    | `path` | `string` | Target route path for navigation |

    #### Example

    ```json theme={null}
    {
      "event": "embedded.navigated",
      "confidential": false,
      "payload": {
        "path": "/session/interaction-123"
      }
    }
    ```
  </Tab>

  <Tab title="Confidential Payload">
    | Field  | Type     | Description                      |
    | ------ | -------- | -------------------------------- |
    | `path` | `string` | Target route path for navigation |

    #### Example

    ```json theme={null}
    {
      "event": "embedded.navigated",
      "confidential": true,
      "payload": {
        "path": "/session/interaction-123"
      }
    }
    ```
  </Tab>
</Tabs>
