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

# Delete document from vector store (CLI/SDK)

> Removes a specific document from the vector store.



## OpenAPI

````yaml /api-reference/openapi.json delete /api/v1/runtime/vector-stores/{id}/documents/{documentId}
openapi: 3.0.0
info:
  title: Runflow Runtime API
  description: >-
    Programmatic surface for the Runflow platform — used by the SDK, the CLI,
    the execution engine, and any server-to-server caller. Authenticate with an
    `x-api-key` header (or `Authorization: Bearer ...`).
  version: 1.0.0
  contact: {}
servers:
  - url: https://api.runflow.ai
    description: Production
  - url: http://localhost:3000
    description: Local development
security: []
tags: []
paths:
  /api/v1/runtime/vector-stores/{id}/documents/{documentId}:
    delete:
      tags:
        - Runtime API - Vector Stores Management
      summary: Delete document from vector store (CLI/SDK)
      description: Removes a specific document from the vector store.
      operationId: RuntimeVectorStoresController_deleteDocument
      parameters:
        - name: id
          required: true
          in: path
          description: Vector store ID or name
          schema:
            type: string
        - name: documentId
          required: true
          in: path
          description: Document ID (UUID)
          schema:
            type: string
      responses:
        '200':
          description: Document deleted successfully.
      security:
        - bearer: []
components: {}

````