v3

latestOpenAPI 3.0.3raw.githubusercontent.com2026-04-279152.1 KB
Points

Update vectors

Update vector data for existing points without modifying their payloads. This is useful when re-embedding content or correcting vector values.

put/collections/{collection_name}/points/vectors

Path parameters

collection_namestring required

The name of the collection containing the points to update.

Request body

Example request

{
  "points": [
    {
      "vectors": [
        0.9,
        0.8,
        0.7,
        0.6
      ]
    }
  ]
}

Response

Vectors updated

timenumber double

Time spent to process this request, in seconds.

statusstring

Operation status. Returns ok on success.

Example response

{
  "time": 0.00060924,
  "status": "ok",
  "result": {
    "status": "Completed"
  }
}