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

# Enqueue the KB ACL enable preflight (verifies coverage + config)



## OpenAPI

````yaml /api-reference/openapi.json post /v1/knowledge-base/acl/rollout/preflight
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/rollout/preflight:
    post:
      tags:
        - knowledge-base-acl
      summary: Enqueue the KB ACL enable preflight (verifies coverage + config)
      operationId: runKnowledgeBaseAclPreflight
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RolloutStatusResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    RolloutStatusResponse:
      properties:
        state:
          type: string
          title: State
        preflight_report:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Preflight Report
        reasons:
          items:
            type: string
          type: array
          title: Reasons
          default: []
      type: object
      required:
        - state
      title: RolloutStatusResponse
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````