Skip to main content
POST
/
api
/
v1
/
vector
/
delete
Delete vectors by ID
curl --request POST \
  --url http://localhost:8080/api/v1/vector/delete \
  --header 'Content-Type: application/protobuf+json' \
  --data '
{
  "ids": [
    "<string>"
  ]
}
'
{
  "status": "success",
  "vectorsDeleted": 2
}

Documentation Index

Fetch the complete documentation index at: https://opendata.dev/docs/llms.txt

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

Body

Request body for deleting vectors by ID.

ids
string[]
required

User-provided IDs of the vectors to delete (up to 64 bytes each).

Maximum string length: 64

Response

Vectors deleted successfully.

Response after successfully deleting vectors.

status
string
required
Example:

"success"

vectorsDeleted
integer<int32>
required

Number of vectors in the request. IDs that did not exist are still counted.