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

# Create document from file (not yet supported)

> Reserved for the file-ingestion pipeline (PDF/DOCX/EPUB/TXT extraction + blob storage + chunking). Currently returns 501 Not Implemented; the route shape and contract are stable so integrators can wire it up ahead of the implementation landing.



## OpenAPI

````yaml /api-reference/openapi.json post /v1/knowledge-base/documents/from-file
openapi: 3.0.0
info:
  title: Zeptar API
  description: >-
    The Zeptar API is organized around REST. All requests and responses are
    JSON. Endpoints are scoped to the authenticated user’s active organization
    unless the path specifies an organization explicitly.
  version: v1
  contact: {}
servers:
  - url: https://api.zeptar.com
    description: Production
  - url: http://localhost:3001
    description: Local development
security: []
tags:
  - name: dashboard
    description: Workspace analytics dashboard
  - name: api-keys
    description: Create, list, update, and revoke API keys
  - name: request-log
    description: Browse, filter, and export the history of authenticated API requests
  - name: voices
    description: Voices available for speech synthesis
  - name: llm
    description: Large language models available for agents
  - name: convai/agents
    description: CRUD on conversational AI agents
  - name: convai/conversations
    description: Start a preview conversation against an agent
  - name: conversations
    description: Browse conversation history, transcripts, tags, and analysis
  - name: organizations
    description: List and look up workspaces (organizations)
  - name: organizations/members
    description: Add and remove members from an org
  - name: me
    description: The current authenticated user
  - name: me/workspace-invitations
    description: Pending workspace invites for the current user
paths:
  /v1/knowledge-base/documents/from-file:
    post:
      tags:
        - Knowledge base documents
      summary: Create document from file (not yet supported)
      description: >-
        Reserved for the file-ingestion pipeline (PDF/DOCX/EPUB/TXT extraction +
        blob storage + chunking). Currently returns 501 Not Implemented; the
        route shape and contract are stable so integrators can wire it up ahead
        of the implementation landing.
      operationId: KnowledgeDocumentsController_createFromFile
      parameters: []
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/CreateKnowledgeDocumentFromFileDto'
      responses:
        '501':
          description: File ingestion not implemented
      deprecated: true
      security:
        - apiKey: []
        - cookie: []
components:
  schemas:
    CreateKnowledgeDocumentFromFileDto:
      type: object
      properties:
        name:
          type: string
          description: Display name. Defaults to the uploaded filename.
        folder_id:
          type: object
          description: Parent folder ID; null = root.
  securitySchemes:
    apiKey:
      scheme: bearer
      bearerFormat: zsk_…
      type: http
      description: >-
        API key issued via `POST /v1/api-keys`. Prefix is `zsk_`. Pass as
        `Authorization: Bearer zsk_…`. Scopes are enforced per key.
    cookie:
      type: apiKey
      in: cookie
      name: better-auth.session_token
      description: >-
        Session cookie set by `auth.api.signInEmail` (or the OAuth flow).
        Forwarded automatically by the browser; copy via `document.cookie` for
        server-to-server calls during development.

````