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

# Delete Learned Profile Memory

> Deletes one path from the learned participant profile.

<Info>
  Delete one profile field with a comma-separated path containing at most three segments.
</Info>


## OpenAPI

````yaml delete /v2/memory-stores/{memory_store_id}/learned/profile
openapi: 3.0.3
info:
  title: Tavus Developer API Collection
  version: 1.0.0
  contact: {}
servers:
  - url: https://tavusapi.com
security:
  - apiKey: []
tags:
  - name: Videos
  - name: Faces
  - name: Voices
  - name: Conversations
  - name: Deployments
  - name: PALs
  - name: Tools
  - name: PAL Tools
  - name: Pronunciation Dictionaries
  - name: Replacements
  - name: Transcriptions
  - name: Documents
  - name: Memory Stores
paths:
  /v2/memory-stores/{memory_store_id}/learned/profile:
    parameters:
      - $ref: '#/components/parameters/memoryStoreId'
    delete:
      tags:
        - Memory Stores
      summary: Delete Learned Profile Memory
      description: Deletes one path from the learned participant profile.
      operationId: deleteLearnedProfileMemory
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - path
              properties:
                path:
                  type: string
                  minLength: 1
                  description: Comma-separated profile path with at most three segments.
                  example: preferences,communication_style
      responses:
        '204':
          description: Profile path deleted
        '400':
          description: Bad Request - path is missing, empty, or deeper than three segments
        '401':
          description: Unauthorized
        '403':
          description: The caller does not own this memory store
        '404':
          description: Memory store or profile path not found
      security:
        - apiKey: []
components:
  parameters:
    memoryStoreId:
      name: memory_store_id
      in: path
      required: true
      description: Memory store identifier.
      schema:
        type: string
        minLength: 2
        maxLength: 64
        pattern: ^m[a-z0-9]+$
      example: m123456789abc
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````