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

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



## OpenAPI

````yaml https://api.anam.ai/swagger.json delete /v1/sessions/{id}/report
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}/report:
    delete:
      tags:
        - Sessions
      summary: delete session report
      description: >-
        Permanently deletes the conversation data captured for a session: the
        session report (transcript, per-turn analytics, tool call details),
        generated insights, and conversation summary. This removes customer
        information only — the session record itself and its usage records are
        retained. The session must have ended. This action is irreversible.
        Idempotent: deleting an already-deleted report succeeds.
      operationId: deleteSessionReport
      parameters:
        - in: path
          name: id
          schema:
            type: string
            format: uuid
          required: true
          description: Session ID
      responses:
        '200':
          description: Successfully deleted session report data
          content:
            application/json:
              schema:
                type: object
                properties:
                  message:
                    type: string
                    example: Session report deleted
                  deletedAt:
                    type: string
                    format: date-time
                    description: When the report 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

````