> ## Documentation Index
> Fetch the complete documentation index at: https://developer.watson-orchestrate.ibm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete a recording



## OpenAPI

````yaml delete /api/recordings/{recording_id}
openapi: 3.1.0
info:
  title: Voice Runtime Proxy & Recording API
  description: >-
    API for voice runtime WebSocket proxying, call recordings, CDR ingestion,
    and static UI serving.
  version: 1.0.0
servers:
  - url: http://localhost:9511/
security: []
tags:
  - name: Voice Runtime
  - name: Recordings
  - name: CDR
  - name: Static
paths:
  /api/recordings/{recording_id}:
    delete:
      tags:
        - Recordings
      summary: Delete a recording
      parameters:
        - name: recording_id
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Recording deleted
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                  recording_id:
                    type: string

````