> ## 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.

# Enable memory for inbound phone number



## OpenAPI

````yaml post /memory/inbound/enable
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/inbound/enable:
    post:
      tags:
        - Memory
      summary: Enable memory for inbound phone number
      operationId: MemoryController_enableMemoryForInbound
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/EnableMemoryDto'
      responses:
        '200':
          description: Memory enabled for inbound number successfully
        '400':
          description: Bad request
        '401':
          description: Unauthorized
        '500':
          description: Internal server error
      security:
        - apiKey: []
components:
  schemas:
    EnableMemoryDto:
      type: object
      properties:
        phone_number:
          type: string
          description: >-
            The inbound phone number to enable memory functionality for. Must be
            an existing inbound number in your account.
          example: '+1234567890'
      required:
        - phone_number
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````