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
Example response
{
"time": 0.00060924,
"status": "ok",
"result": {
"status": "Completed"
}
}