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

# Edit a page's title or content

> Edits a page's title and/or Markdown content and re-indexes it into the hub's knowledge store before answering. Editing a generated page flips its `origin` to `edited`; it keeps your text until its sources are re-crawled, at which point an update or refresh of the hub regenerates it. Pages you authored (`origin` `user`) keep your edits permanently. The response carries only the fields this call changes; list the hub's pages for a page's category and createdAt. Only the hub's owner can edit pages.

Errors:
- `404` `KNOWLEDGE_HUB_NOT_FOUND` — No hub with that id, it was deleted, or it belongs to another team.
- `404` `KNOWLEDGE_PAGE_NOT_FOUND` — No page with that id on this hub.
- `409` `KNOWLEDGE_HUB_NOT_READY` — The hub is still building, or its build never finished.
- `409` `KNOWLEDGE_HUB_PAGES_UNAVAILABLE` — The hub predates knowledge pages.
- `403` `KNOWLEDGE_HUB_OWNER_ONLY` — You can read this teammate's hub but only its owner can edit pages.
- `422` `VALIDATION_FAILED` — Neither title nor content given, or a value too long.
- `500` `UNEXPECTED_ERROR` — The edit was saved but could not be re-indexed; retry the PATCH.
- `429` `RATE_LIMITED` — More than 30 knowledge-hub/campaign requests in a minute (or 1000 in a day). Knowledge hubs share the campaigns bucket.

Requires one of the following token scopes: campaigns.



## OpenAPI

````yaml /openapi.json patch /business/knowledge-hubs/{hubId}/pages/{pageId}
openapi: 3.1.0
info:
  title: Fuse Business API
  version: 1.0.0
  description: >-
    External API for lists, campaigns, prospect search and contacts.
    Authenticate with your API token as HTTP Basic. All paths are under /api/v1.
servers:
  - url: https://api.tryfuse.ai/api/v1
    description: Production
security:
  - basicAuth: []
tags:
  - name: Lists
  - name: Custom columns
  - name: Smart columns
  - name: Exports
  - name: Campaigns
  - name: Knowledge hubs
  - name: Analytics
  - name: Website intent
  - name: Account
  - name: Prospect search
  - name: Campaign steps
  - name: Scheduled sends
  - name: Campaign templates
  - name: Agents
  - name: Research
  - name: Company search
  - name: Saved searches
  - name: Folders
  - name: Contacts
paths:
  /business/knowledge-hubs/{hubId}/pages/{pageId}:
    patch:
      tags:
        - Knowledge hubs
      summary: Edit a page's title or content
      description: >-
        Edits a page's title and/or Markdown content and re-indexes it into the
        hub's knowledge store before answering. Editing a generated page flips
        its `origin` to `edited`; it keeps your text until its sources are
        re-crawled, at which point an update or refresh of the hub regenerates
        it. Pages you authored (`origin` `user`) keep your edits permanently.
        The response carries only the fields this call changes; list the hub's
        pages for a page's category and createdAt. Only the hub's owner can edit
        pages.


        Errors:

        - `404` `KNOWLEDGE_HUB_NOT_FOUND` — No hub with that id, it was deleted,
        or it belongs to another team.

        - `404` `KNOWLEDGE_PAGE_NOT_FOUND` — No page with that id on this hub.

        - `409` `KNOWLEDGE_HUB_NOT_READY` — The hub is still building, or its
        build never finished.

        - `409` `KNOWLEDGE_HUB_PAGES_UNAVAILABLE` — The hub predates knowledge
        pages.

        - `403` `KNOWLEDGE_HUB_OWNER_ONLY` — You can read this teammate's hub
        but only its owner can edit pages.

        - `422` `VALIDATION_FAILED` — Neither title nor content given, or a
        value too long.

        - `500` `UNEXPECTED_ERROR` — The edit was saved but could not be
        re-indexed; retry the PATCH.

        - `429` `RATE_LIMITED` — More than 30 knowledge-hub/campaign requests in
        a minute (or 1000 in a day). Knowledge hubs share the campaigns bucket.


        Requires one of the following token scopes: campaigns.
      operationId: updateKnowledgeHubPage
      parameters:
        - name: hubId
          in: path
          required: true
          description: >-
            24-character hex id of the knowledge hub (from GET
            /business/knowledge-hubs).
          schema:
            type: string
            description: >-
              24-character hex id of the knowledge hub (from GET
              /business/knowledge-hubs).
        - name: pageId
          in: path
          required: true
          description: >-
            24-character hex id of the knowledge page (from GET
            /business/knowledge-hubs/{hubId}/pages).
          schema:
            type: string
            description: >-
              24-character hex id of the knowledge page (from GET
              /business/knowledge-hubs/{hubId}/pages).
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                title:
                  type: string
                  minLength: 1
                  maxLength: 200
                  description: New page title (1-200 characters).
                content:
                  type: string
                  minLength: 1
                  maxLength: 60000
                  description: >-
                    New Markdown body (1-60,000 characters); a generated page
                    becomes an edited one but is still refreshed when its
                    sources change.
              description: At least one of title or content is required.
      responses:
        '200':
          description: Success
          headers:
            RateLimit-Limit:
              schema:
                type: integer
              description: Requests permitted in the current window.
            RateLimit-Remaining:
              schema:
                type: integer
              description: Requests remaining in the current window.
            RateLimit-Reset:
              schema:
                type: integer
              description: Seconds until the current window resets.
          content:
            application/json:
              schema:
                type: object
                required:
                  - page
                properties:
                  page:
                    type: object
                    required:
                      - id
                      - title
                      - content
                      - origin
                      - updatedAt
                    description: >-
                      The fields the update reports. Read the page back with GET
                      /business/knowledge-hubs/{hubId}/pages for its category
                      and createdAt.
                    properties:
                      id:
                        type: string
                      title:
                        type:
                          - string
                          - 'null'
                      content:
                        type:
                          - string
                          - 'null'
                        description: The page body in Markdown, as stored after this call.
                      origin:
                        type:
                          - string
                          - 'null'
                        enum:
                          - generated
                          - edited
                          - user
                          - null
                        description: >-
                          `edited` after you edit a generated page, `user` for a
                          page you authored yourself.
                      updatedAt:
                        type:
                          - string
                          - 'null'
                        format: date-time
              example:
                page:
                  id: 68a1fc209c41d20014b3f301
                  title: Pricing and plans
                  content: '## Plans\n\nStarter is 49 GBP per month per employer.'
                  origin: edited
                  updatedAt: '2026-08-25T16:49:57.052Z'
        '400':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '401':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '402':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '403':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '409':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '422':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '429':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - basicAuth: []
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
            message:
              type: string
            param:
              type:
                - string
                - 'null'
            doc_url:
              type:
                - string
                - 'null'
            request_id:
              type:
                - string
                - 'null'
          required:
            - code
            - message
      required:
        - error
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: >-
        Your API token (`af_…`) as the Basic-auth username, with an empty
        password.

````