> ## 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 Raw Data

<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/raw-data
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/raw-data:
    delete:
      tags:
        - admin
      summary: Delete Raw Data
      operationId: deleteRawData
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RawDataDeleteRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SuccessResultRawDataDeleteResult'
components:
  schemas:
    RawDataDeleteRequest:
      type: object
      properties:
        rawDataIds:
          type: array
          items:
            type: string
            minLength: 1
          minItems: 1
      required:
        - rawDataIds
    SuccessResultRawDataDeleteResult:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/RawDataDeleteResult'
    RawDataDeleteResult:
      type: object
      properties:
        deletedRawDataCount:
          type: integer
          format: int32
        deletedItemCount:
          type: integer
          format: int32
        affectedMemoryIds:
          type: array
          items:
            type: string
        insightCleanupRequired:
          type: boolean

````