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

# Get custom field names from contacts table schema



## OpenAPI

````yaml post /contacts/get-custom-field-names
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:
  /contacts/get-custom-field-names:
    post:
      tags:
        - contacts
      summary: Get custom field names from contacts table schema
      operationId: ContactsController_getCustomFieldNames
      parameters: []
      responses:
        '200':
          description: Custom field names retrieved and stored successfully
      security:
        - apiKey: []
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````