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

# Remove a specific call from a memory



## OpenAPI

````yaml post /memory/{id}/call/{callId}/delete
openapi: 3.0.0
info:
  title: ClearTalk API
  description: The ClearTalk API Documentation
  version: '1.0'
  contact:
    name: Developer Support
    email: devsupport@cleartalk.ai
servers:
  - url: https://api.cleartalk.ai
    description: ClearTalk AI API Server
security: []
tags: []
paths:
  /memory/{id}/call/{callId}/delete:
    post:
      tags:
        - Memory
      summary: Remove a specific call from a memory
      operationId: MemoryController_removeCallFromMemory
      parameters:
        - name: id
          required: true
          in: path
          schema:
            type: string
        - name: callId
          required: true
          in: path
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoveCallFromMemoryDto'
      responses:
        '200':
          description: Call removed from memory successfully
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - apiKey: []
components:
  schemas:
    RemoveCallFromMemoryDto:
      type: object
      properties:
        external_memory_key:
          type: string
          description: >-
            Optional external key for additional memory validation or
            cross-referencing.
          example: external_key_123
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````