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

# Get tenant engagement settings (public)

> Returns the effective engagement configuration for the tenant identified by the `x-tenant-id` header. When the tenant has no stored record, the built-in defaults are returned. Article and category/sub-category overrides are applied separately and are not reflected here.



## OpenAPI

````yaml /api-reference/ai-cms/openapi.json get /articles/engagementSettings
openapi: 3.1.0
info:
  title: Blog API
  version: 1.0.0
servers:
  - url: https://api.octaviatech.app/cms
    description: Production
security:
  - ApiKeyAuth: []
tags:
  - name: Tags
    description: Tag management endpoints
paths:
  /articles/engagementSettings:
    get:
      tags:
        - Articles
      summary: Get tenant engagement settings (public)
      description: >-
        Returns the effective engagement configuration for the tenant identified
        by the `x-tenant-id` header. When the tenant has no stored record, the
        built-in defaults are returned. Article and category/sub-category
        overrides are applied separately and are not reflected here.
      responses:
        '200':
          description: OK
          content:
            application/json:
              example:
                success: true
                statusCode: 200
                message: Engagement settings retrieved successfully
                data:
                  tenantId: tenant-1
                  commentsEnabled: true
                  reactionsEnabled: true
                  allowGuestComments: false
                  allowGuestReactions: false
                  autoApproveComments: true
                  requireCaptchaForGuestEngagement: true
                  guestEngagementCaptchaMinScore: 0.5
                  guestEngagementRateLimitPerMin: 20
                  updatedBy: null
        '400':
          description: Bad request (missing x-tenant-id header)
          content:
            application/json:
              example:
                success: false
                statusCode: 400
                message: x-tenant-id is required in headers
                data: null
        '500':
          description: Server error
          content:
            application/json:
              example:
                success: false
                statusCode: 500
                message: Server Error
                data: null
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````