> ## Documentation Index
> Fetch the complete documentation index at: https://private-7c7dfe99-mintlify-8c05c8a2.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Dashboard

> Deletes a dashboard



## OpenAPI

````yaml /_specs/hyperdx-openapi.json delete /api/v2/dashboards/{id}
openapi: 3.0.0
info:
  title: HyperDX External API
  description: API for managing HyperDX alerts and dashboards
  version: 2.0.0
servers:
  - url: https://api.hyperdx.io
    description: Production API server
  - url: /
    description: Current server
security:
  - BearerAuth: []
tags:
  - name: Dashboards
    description: Endpoints for managing dashboards and their visualizations
  - name: Alerts
    description: Endpoints for managing monitoring alerts
paths:
  /api/v2/dashboards/{id}:
    delete:
      tags:
        - Dashboards
      summary: Delete Dashboard
      description: Deletes a dashboard
      operationId: deleteDashboard
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Dashboard ID
          example: 65f5e4a3b9e77c001a567890
      responses:
        '200':
          description: Successfully deleted dashboard
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
              example: {}
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Unauthorized access. API key is missing or invalid.
        '404':
          description: Dashboard not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                message: Dashboard not found
components:
  schemas:
    EmptyResponse:
      type: object
      properties: {}
    Error:
      type: object
      properties:
        message:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key

````