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

# Clear your cross-session memory note.

> Delete the caller's cross-session memory note. Owner-scoped: a caller can only clear its OWN
note. With no key this clears the account-level note; with a memory_key it clears that one
end-customer's note. Idempotent (removed=0 if it didn't exist).



## OpenAPI

````yaml /openapi.json delete /v1/users/me/cross-session-memory
openapi: 3.1.0
info:
  title: Universal Document AI API
  description: AI-powered document editing with multi-tenant organization support
  version: 2.0.0
servers: []
security: []
paths:
  /v1/users/me/cross-session-memory:
    delete:
      tags:
        - v1
        - mcp
      summary: Clear your cross-session memory note.
      description: >-
        Delete the caller's cross-session memory note. Owner-scoped: a caller
        can only clear its OWN

        note. With no key this clears the account-level note; with a memory_key
        it clears that one

        end-customer's note. Idempotent (removed=0 if it didn't exist).
      operationId: clear_cross_session_memory
      parameters:
        - name: memory_key
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Clear ONE end-customer's stored memory (the
              cross_session_memory_key you send on chat). Omit to clear the
              account-level note (the B2C default).
            title: Memory Key
          description: >-
            Clear ONE end-customer's stored memory (the cross_session_memory_key
            you send on chat). Omit to clear the account-level note (the B2C
            default).
        - name: authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````