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

# Update the org's KB role→clearance map and/or classification mode



## OpenAPI

````yaml /api-reference/openapi.json put /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:
    put:
      tags:
        - knowledge-base-acl
      summary: Update the org's KB role→clearance map and/or classification mode
      operationId: updateKnowledgeBaseAclConfig
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ACLConfigUpdate'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ACLConfigResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ACLConfigUpdate:
      properties:
        role_clearance_map:
          anyOf:
            - additionalProperties:
                type: integer
              type: object
            - type: 'null'
          title: Role Clearance Map
        role_audience_map:
          anyOf:
            - additionalProperties:
                items:
                  type: string
                type: array
              type: object
            - type: 'null'
          title: Role Audience Map
        classification_mode:
          anyOf:
            - type: string
              enum:
                - auto
                - kb_default
            - type: 'null'
          title: Classification Mode
      additionalProperties: false
      type: object
      title: ACLConfigUpdate
    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).
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````