Skip to main content
DELETE
/
delete
curl -X DELETE "http://localhost:8080/delete" \
  -H "Content-Type: application/json" \
  -d '{"ids": ["item-1", "item-2"]}'
{
  "status": "success",
  "deleted": 1,
  "not_found_ids": ["item-2"]
}

Documentation Index

Fetch the complete documentation index at: https://docs.moorcheh.ai/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Remove one or more vectors by id.
ids
array
required
Non-empty array of item id strings.
curl -X DELETE "http://localhost:8080/delete" \
  -H "Content-Type: application/json" \
  -d '{"ids": ["item-1", "item-2"]}'
{
  "status": "success",
  "deleted": 1,
  "not_found_ids": ["item-2"]
}