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

# delete session

> Permanently deletes all customer information captured for a session: the session report (transcript, per-turn analytics, tool call details), generated insights, conversation summary, the video recording, and requester IP. This removes customer information only — the session record itself and its usage records are retained for billing and aggregate statistics. The session must have ended. This action is irreversible. Idempotent: deleting already-deleted session data succeeds.



## OpenAPI

````yaml https://api.anam.ai/swagger.json delete /v1/sessions/{id}
openapi: 3.1.0
info:
  title: Anam AI API
  version: '1.0'
servers:
  - url: https://api.anam.ai
    description: Anam API
security:
  - BearerAuth: []
tags:
  - name: Sessions
  - name: Meetings
  - name: Personas
  - name: Avatars
  - name: Voices
  - name: LLMs
  - name: Knowledge
  - name: Tools
  - name: Share Links
  - name: Engine
paths:
  /v1/sessions/{id}:
    delete:
      tags:
        - Sessions
      summary: delete session
      description: >-
        Permanently deletes all customer information captured for a session: the
        session report (transcript, per-turn analytics, tool call details),
        generated insights, conversation summary, the video recording, and
        requester IP. This removes customer information only — the session
        record itself and its usage records are retained for billing and
        aggregate statistics. The session must have ended. This action is
        irreversible. Idempotent: deleting already-deleted session data
        succeeds.
      operationId: deleteSession
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
          description: Session ID
      responses:
        '200':
          description: Successfully deleted session data
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Session data deleted
                  deletedAt:
                    type: string
                    format: date-time
                    description: When the session data was erased
        '400':
          description: Bad request - Invalid session ID
        '401':
          description: Unauthorized - Invalid or missing API key
        '403':
          description: Forbidden - API key lacks the required permission
        '404':
          description: Not Found - Session not found
        '409':
          description: Conflict - Session has not ended yet
        '500':
          description: Server error
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer

````