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

# Move Brand Facts

> Files 1-50 brand facts under a published Knowledge Base pillar. Works for unfiled facts and re-files facts from other pillars. Review status never changes, and only approved facts under a published pillar feed content generation, so moving is what puts approved facts to work. Ids with no fact on the website are reported in not_found_ids instead of failing the call, so retries are idempotent. Requires a website-admin API key. Also available as the MCP tool `move_brand_facts`.



## OpenAPI

````yaml /api-reference/openapi.json post /api/v1/knowledge-base/facts/move
openapi: 3.1.0
info:
  title: AthenaHQ API
  description: >-
    AthenaHQ API provides programmatic access to manage your websites and
    prompts for AI-powered content optimization.
  version: 1.0.0
  contact:
    email: support@athenahq.ai
servers:
  - url: https://api.athenahq.ai
    description: Production server
security:
  - apiKey: []
tags:
  - name: Basics
    description: Core API operations for managing websites and prompts
  - name: Metrics
    description: Metrics and analytics endpoints for tracking AI visibility
  - name: Billing
    description: Billing and credits endpoints for managing usage
  - name: Team Management
    description: Endpoints for managing team members and invitations
  - name: Groups
    description: Endpoints for managing groups of websites
  - name: Content
    description: >-
      Endpoints for accessing Content Hub data — tabs, tracked URLs, and per-URL
      prompt breakdowns.
  - name: Pitch Workspace
    description: >-
      Endpoints for accessing pitch workspace reports — org-scoped pitch runs
      with competitors, prompts, attributes, and aggregate metrics.
  - name: Knowledge Base
    description: >-
      Endpoints for reading the brand Knowledge Base — approved brand facts and
      the pillars that organize them.
paths:
  /api/v1/knowledge-base/facts/move:
    post:
      tags:
        - Knowledge Base
      summary: Move Brand Facts
      description: >-
        Files 1-50 brand facts under a published Knowledge Base pillar. Works
        for unfiled facts and re-files facts from other pillars. Review status
        never changes, and only approved facts under a published pillar feed
        content generation, so moving is what puts approved facts to work. Ids
        with no fact on the website are reported in not_found_ids instead of
        failing the call, so retries are idempotent. Requires a website-admin
        API key. Also available as the MCP tool `move_brand_facts`.
      operationId: moveBrandFacts
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                website_id:
                  type: string
                  format: uuid
                  description: The website whose facts to move.
                pillar_id:
                  type: string
                  format: uuid
                  description: The published pillar to file the facts under.
                fact_ids:
                  type: array
                  minItems: 1
                  maxItems: 50
                  items:
                    type: string
                    format: uuid
                  description: Facts to move. A single move is a one-element array.
              required:
                - website_id
                - pillar_id
                - fact_ids
      responses:
        '200':
          description: Move report
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    enum:
                      - true
                  moved_count:
                    type: integer
                    description: Facts actually re-filed onto the pillar.
                  unchanged_ids:
                    type: array
                    items:
                      type: string
                    description: >-
                      Requested facts that were not moved: already on the
                      target, or no longer present by the time the move ran.
                  not_found_ids:
                    type: array
                    items:
                      type: string
                    description: >-
                      Requested ids with no fact on this website: already
                      deleted or never existed.
                  pillar:
                    type: object
                    description: The target pillar the facts were filed under.
                    properties:
                      id:
                        type: string
                      name:
                        type: string
                    required:
                      - id
                      - name
                required:
                  - success
                  - moved_count
                  - unchanged_ids
                  - not_found_ids
                  - pillar
        '400':
          description: >-
            Bad request - Invalid parameters, or the target pillar is not
            published
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                empty_fact_ids:
                  value:
                    error: 'factIds: fact_ids must contain at least one id'
                too_many_fact_ids:
                  value:
                    error: 'factIds: fact_ids must contain at most 50 ids'
                unpublished_pillar:
                  value:
                    error: facts can only be moved to a published pillar
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: >-
            Forbidden - No admin access to this website, or the Knowledge Base
            is not enabled for the organization
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                unauthorized_website:
                  value:
                    error: Unauthorized access to this website
                kb_not_enabled:
                  value:
                    error: Knowledge Base is not enabled for this organization
        '404':
          description: Not found - No pillar with this id on the website
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              examples:
                pillar_not_found:
                  value:
                    error: Pillar not found
      security:
        - apiKey: []
components:
  schemas:
    Error:
      type: object
      description: Error response object
      required:
        - error
      properties:
        error:
          type: string
          description: Error message describing what went wrong
          example: Unauthorized
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. You can create one
        [here](https://app.athenahq.ai/organization?tab=api).

````