Remove a document in Vector Store

delete

Delete a specific document from a vector store.

Path parameters
vector-store-idstringRequired

The ID of the vector store.

document-idintegerRequired

The ID of the document.

Header parameters
x-api-keystringRequired

The API key for authentication.

Responses
204
Document deleted successfully.
delete
DELETE /api/v1/vector-stores/{vector-store-id}/documents/{document-id}/ HTTP/1.1
Host: api.rememberizer.ai
x-api-key: text
Accept: */*
204

Document deleted successfully.

No content

Example Requests

curl -X DELETE \
  https://api.rememberizer.ai/api/v1/vector-stores/vs_abc123/documents/1234/ \
  -H "x-api-key: YOUR_API_KEY"

Replace YOUR_API_KEY with your actual Vector Store API key, vs_abc123 with your Vector Store ID, and 1234 with the document ID.

Path Parameters

Parameter
Type
Description

vector-store-id

string

Required. The ID of the vector store containing the document.

document-id

integer

Required. The ID of the document to delete.

Response

A successful request returns a 204 No Content status code with no response body.

Authentication

This endpoint requires authentication using an API key in the x-api-key header.

Error Responses

Status Code
Description

401

Unauthorized - Invalid or missing API key

404

Not Found - Vector Store or document not found

500

Internal Server Error

This endpoint allows you to remove a document from your vector store. Once deleted, the document and its vector embeddings will no longer be available for search operations. This is useful for removing outdated, irrelevant, or sensitive content from your knowledge base.

Last updated