For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
CloudGitHub
  • API Reference
      • POSTRetrieve points
      • PUTUpsert points
      • GETRetrieve a point
      • POSTDelete points
      • PUTUpdate vectors
      • POSTDelete vectors
      • POSTSet payload
      • PUTOverwrite payload
      • POSTDelete payload
      • POSTClear payload
      • POSTBatch update points
      • POSTScroll points
      • POSTCount points
      • POSTPayload field facets
LogoLogo
CloudGitHub
API ReferencePoints

Update vectors

PUT
/collections/:collection_name/points/vectors
PUT
/collections/:collection_name/points/vectors
$curl -X PUT \
> 'http://localhost:6333/collections/collection_name/points/vectors?wait=true' \
> --header 'api-key: <api-key-value>' \
> --header 'Content-Type: application/json' \
> --data-raw '{
> "points": [
> {
> "id": 1,
> "vector": [
> 0.0984,
> 0.1406,
> 0.8973
> ]
> },
> {
> "id": 2,
> "vector": {
> "vector-name": [
> 0.9,
> 0.8,
> 0.7,
> 0.6
> ]
> }
> }
> ]
>}'
200Updated
1{
2 "usage": {
3 "hardware": {
4 "cpu": 1,
5 "payload_io_read": 1,
6 "payload_io_write": 1,
7 "payload_index_io_read": 1,
8 "payload_index_io_write": 1,
9 "vector_io_read": 1,
10 "vector_io_write": 1
11 },
12 "inference": {
13 "models": {}
14 }
15 },
16 "time": 0.002,
17 "status": "ok",
18 "result": {
19 "status": "acknowledged",
20 "operation_id": 1
21 }
22}
Updates specified vectors on points. All other unspecified vectors will stay intact.
Was this page helpful?
Previous

Delete vectors

Next
Built with

Authentication

api-keystring
API Key authentication via header

Path parameters

collection_namestringRequired
Name of the collection to update from

Query parameters

waitbooleanOptional
If true, wait for changes to actually happen
orderingenumOptional
define ordering guarantees for the operation
Allowed values:
timeoutintegerOptional>=1
Timeout for the operation

Request

Update named vectors on points
pointslist of objectsRequired
Points with named vectors
shard_keystring or uint64 or list of strings or uint64s or object or anyOptional
update_filterobject or anyOptional

Response

successful operation
usageobject or any
timedouble
Time spent to process this request
statusstring
resultobject