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

# Get currently active CRM settings.



## OpenAPI

````yaml /openapi/chat-client.yaml get /settings/crm
openapi: 3.0.3
info:
  version: 1.0.0
  title: HealviChat Client API
servers:
  - url: https://{tenant_domain}/third-party/v1
    variables:
      tenant_domain:
        default: your-tenant.onhealvi.com
        description: Your tenant domain
security:
  - bearerAuth: []
paths:
  /settings/crm:
    get:
      tags:
        - settings
      summary: Get currently active CRM settings.
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/CrmSettings'
components:
  schemas:
    CrmSettings:
      description: CRM configuration settings.
      type: object
      properties:
        custom_field_name_1:
          description: One of five custom field names. See profiles.
          type: string
          nullable: true
        custom_field_name_2:
          type: string
          nullable: true
        custom_field_name_3:
          type: string
          nullable: true
        custom_field_name_4:
          type: string
          nullable: true
        custom_field_name_5:
          type: string
          nullable: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````