> ## 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 Call

> Delete a call log



## OpenAPI

````yaml delete /observability/v1/call-logs/{id}/
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/call-logs/{id}/:
    delete:
      tags:
        - observability
      summary: Delete a call log
      description: >-
        ⚠ Irreversible. Deletes the call log along with its transcript and voice
        recording. By default metric evaluations are also deleted; set
        `retain_evaluations=true` to keep them and leave the call record
        un-soft-deleted.
      operationId: call-logs-destroy
      parameters:
        - in: path
          name: id
          schema:
            type: integer
          description: A unique integer value identifying this call log.
          required: true
        - in: query
          name: retain_evaluations
          schema:
            type: boolean
            default: false
          description: >-
            If true, metric evaluations are retained and the call log is not
            soft-deleted. Default: false.
      responses:
        '204':
          description: No response body
        '404':
          content:
            application/json:
              schema:
                type: object
                properties:
                  detail:
                    type: string
          description: ''
      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.

````