> ## 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/events/status",
  "feedback": "Description of the issue"
}
```

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

</AgentInstructions>

# status embed event

> Emitted by Omni to indicate the status of the dashboard to the parent frame.

## Payload

```json theme={null}
{
  "status": "string",
  "dashboardId": "string"
}
```

## Properties

<ParamField path="status" type="string">
  Status of the dashboard in the iframe. One of `loading`, `running`, `done`, or `error`.
</ParamField>

<ParamField path="dashboardId" type="string">
  The identifier of the dashboard that emitted the status event. This allows embedded dashboard consumers to identify which dashboard is reporting its status.
</ParamField>

## Example

```json theme={null}
{
  "status": "loading",
  "dashboardId": "dashboard-123abc"
}
```
