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

# Delete Metric Failure Mode Insight Category

> Remove one persistent failure category and all of its stored call assignments. Future calls are classified only against the remaining categories. Scope with `project` and `metric_id`. ⚠ Cannot be undone.



## OpenAPI

````yaml delete /observability/v1/metric-failure-mode-insights/categories/{category_slug}/delete/
openapi: 3.1.0
info:
  title: Cekura API
  version: v1
  description: >-
    Complete API documentation for the Cekura platform. This API provides
    endpoints for testing, observing, and evaluating AI voice agents — including
    managing agents, running evaluators, defining metrics, and analyzing call
    quality.
servers:
  - url: https://api.cekura.ai
security: []
paths:
  /observability/v1/metric-failure-mode-insights/categories/{category_slug}/delete/:
    delete:
      tags:
        - observability
      summary: Delete an accumulating failure category
      description: >-
        Remove one persistent failure category and all of its stored call
        assignments. Future calls are classified only against the remaining
        categories. Scope with `project` and `metric_id`. ⚠ Cannot be undone.
      operationId: metric-failure-mode-insights-categories-delete-destroy
      parameters:
        - in: path
          name: category_slug
          schema:
            type: string
            pattern: ^[^/]+$
          required: true
      responses:
        '204':
          description: No response body
      security:
        - api_key: []
components:
  securitySchemes:
    api_key:
      type: apiKey
      name: X-CEKURA-API-KEY
      in: header
      description: >-
        API Key Authentication. It should be included in the header of each
        request.

````