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

# Erase an end-user's memory

> Removes every long-term fact held about one end-user, scoped to your
organization and the acting key's workspace. Intended for the moment one of your
own users is deleted. The erasure is itself recorded on the audit trail.



## OpenAPI

````yaml /api-reference/openapi.json delete /recall
openapi: 3.1.0
info:
  title: Akumi
  version: 0.0.1
servers:
  - url: https://api.akumi.eu/v1
    description: Production
security:
  - http: []
tags:
  - name: Audit log
  - name: Chat completions
  - name: Embeddings
  - name: Models
  - name: Recall
  - name: Scores
paths:
  /recall:
    delete:
      tags:
        - Recall
      summary: Erase an end-user's memory
      description: >-
        Removes every long-term fact held about one end-user, scoped to your

        organization and the acting key's workspace. Intended for the moment one
        of your

        own users is deleted. The erasure is itself recorded on the audit trail.
      operationId: v1.recall.destroy
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: object
                properties:
                  user_ref:
                    type: string
                  erased_at:
                    type: string
                  deleted:
                    type: object
                    properties:
                      facts:
                        type: integer
                      threads:
                        type: integer
                        minimum: 0
                    required:
                      - facts
                      - threads
                required:
                  - user_ref
                  - erased_at
                  - deleted
        '401':
          $ref: '#/components/responses/AuthenticationException'
        '422':
          $ref: '#/components/responses/ValidationException'
components:
  responses:
    AuthenticationException:
      description: Unauthenticated
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Error overview.
            required:
              - message
    ValidationException:
      description: Validation error
      content:
        application/json:
          schema:
            type: object
            properties:
              message:
                type: string
                description: Errors overview.
              errors:
                type: object
                description: A detailed description of each field that failed validation.
                additionalProperties:
                  type: array
                  items:
                    type: string
            required:
              - message
              - errors
  securitySchemes:
    http:
      type: http
      scheme: bearer

````