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

# Delete Dashboard

The `deleteDashboard` mutation permanently removes a dashboard and all its associated data.

## Signature

```graphql theme={null}
deleteDashboard(id: String!): Boolean!
```

## Arguments

<ParamField path="id" type="String!" required>
  The unique identifier of the dashboard to delete.
</ParamField>

## Response

Returns `true` if the dashboard was successfully deleted, `false` otherwise.

## Usage example

The following example shows how to delete a dashboard:

```graphql theme={null}
mutation DeleteDashboard($id: String!) {
  deleteDashboard(id: $id)
}
```

<RequestExample>
  ```bash Request theme={null}
  curl -X POST \
    -H "Content-Type: application/json" \
    -H "Authorization: Bearer <jwt_token>" \
    -d '{
      "query": "mutation DeleteDashboard($id: String!) { deleteDashboard(id: $id) }",
      "variables": {
        "id": "dashboard_123456789"
      }
    }' \
    https://{ACCOUNT}.askwisdom.ai/graphql
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "data": {
      "deleteDashboard": true
    }
  }
  ```
</ResponseExample>

## Next steps

<CardGroup cols={2}>
  <Card title="Dashboards Query" icon="list" href="/integrations/graphql-api/queries/dashboard/dashboards">
    List available dashboards
  </Card>
</CardGroup>
