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
LogoLogo
CloudGitHub
API ReferencePoints

Batch update points

POST
/collections/:collection_name/points/batch
POST
/collections/:collection_name/points/batch
$curl -X POST \
> 'http://localhost:6333/collections/collection_name/points/batch' \
> --header 'Content-Type: application/json' \
> --header 'api-key: <api-key-value>' \
> --data-raw '{
> "operations": [
> {
> "upsert": {
> "points": [
> {
> "id": 1,
> "vector": [
> 0.4,
> 0.3,
> 0.2,
> 0.1
> ]
> }
> ]
> }
> },
> {
> "update_vectors": {
> "points": [
> {
> "id": 1,
> "vector": [
> 0.11,
> 0.22,
> 0.33,
> 0.44
> ]
> }
> ]
> }
> },
> {
> "set_payload": {
> "payload": {
> "test_payload_2": 2,
> "test_payload_3": 3
> },
> "points": [
> 1
> ]
> }
> }
> ]
>}'
200Successful
1{
2 "time": 0.002,
3 "status": "ok",
4 "result": [
5 {
6 "status": "acknowledged",
7 "operation_id": 1
8 }
9 ]
10}
Batch updates points, including their respective vectors and payloads.
Was this page helpful?
Previous

Scroll points

Next
Built with

Authentication

api-keystring
API Key authentication via header

Path parameters

collection_namestringRequired
Name of the collection to apply operations on

Query parameters

waitbooleanOptional
If true, wait for changes to actually happen
orderingenumOptional
define ordering guarantees for the operation
Allowed values:

Request

update operations
operationslist of objectsRequired

Response

successful operation
timedouble
Time spent to process this request
statusstring
resultlist of objects