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

# Delete Alert

> Delete an alert



## OpenAPI

````yaml /public-apis/openapi/alerts.json delete /v1/alerts
openapi: 3.0.0
info:
  version: 1.0.0
  contact:
    name: Maxim Engineering
    email: eng@getmaxim.ai
  title: Maxim SDK API - alerts
  description: API documentation for Maxim SDK alerts endpoints
servers:
  - url: https://api.getmaxim.ai
security: []
paths:
  /v1/alerts:
    delete:
      tags:
        - Alert
      summary: Delete Alert
      description: Delete an alert
      parameters:
        - schema:
            type: string
            description: Unique identifier for the workspace
          required: true
          name: workspaceId
          in: query
        - schema:
            type: string
            description: Unique identifier for the alert to delete
          required: true
          name: id
          in: query
      responses:
        '200':
          description: Alert deleted successfully
        '400':
          description: Invalid request parameters
        '404':
          description: Alert not found
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-maxim-api-key
      description: API key for authentication

````