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

# Delete Insights

<Warning>The API Reference is under active development. Request and response schemas may change before a stable release.</Warning>


## OpenAPI

````yaml /openapi.json delete /admin/v1/insights
openapi: 3.1.0
info:
  title: Memind Server API
  description: HTTP API for Memind memory ingestion, retrieval, and administration.
  version: v1
servers: []
security: []
tags:
  - name: memory
    description: Runtime memory ingestion, retrieval, and health endpoints.
    x-group: memory
  - name: admin
    description: Administrative endpoints for memory operations.
    x-group: admin
paths:
  /admin/v1/insights:
    delete:
      tags:
        - admin
      summary: Delete Insights
      operationId: deleteInsights
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InsightDeleteRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultBatchDeleteResult'
components:
  schemas:
    InsightDeleteRequest:
      type: object
      properties:
        insightIds:
          type: array
          items:
            type: integer
            format: int64
          minItems: 1
      required:
        - insightIds
    SuccessResultBatchDeleteResult:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/BatchDeleteResult'
    BatchDeleteResult:
      type: object
      properties:
        deletedCount:
          type: integer
          format: int32
        affectedMemoryIds:
          type: array
          items:
            type: string

````