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

# Knowledge document finished

> Fired when a single document finishes processing (chunking and embedding). Contains the document ID and final status. The document is searchable once this webhook fires with a successful status.



## OpenAPI

````yaml /openapi.json webhook knowledgedocument.finished
openapi: 3.1.1
info:
  title: PromptJuggler
  description: PromptJuggler API
  version: 1.0.0
servers:
  - url: https://promptjuggler.com
security:
  - Bearer: []
tags:
  - name: Prompts
    description: Fetch prompts and revisions.
  - name: Prompt Runs
    description: Execute published prompts and retrieve results.
  - name: Workflow Runs
    description: Execute multi-step workflows and retrieve results.
  - name: Knowledge Bases
    description: Upload and manage documents used for retrieval-augmented generation.
paths: {}
components:
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````