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

# Get the org's effective KB ACL config (role→clearance map + mode)



## OpenAPI

````yaml /api-reference/openapi.json get /v1/knowledge-base/acl/config
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/knowledge-base/acl/config:
    get:
      tags:
        - knowledge-base-acl
      summary: Get the org's effective KB ACL config (role→clearance map + mode)
      operationId: getKnowledgeBaseAclConfig
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ACLConfigResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ACLConfigResponse:
      properties:
        role_clearance_map:
          additionalProperties:
            type: integer
          type: object
          title: Role Clearance Map
        role_audience_map:
          additionalProperties:
            items:
              type: string
            type: array
          type: object
          title: Role Audience Map
        classification_mode:
          type: string
          title: Classification Mode
      type: object
      required:
        - role_clearance_map
        - role_audience_map
        - classification_mode
      title: ACLConfigResponse
      description: Effective ACL config (custom map merged over defaults).
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````