---
title: "Upsert points"
method: PUT
path: "/collections/{collection_name}/points"
tags: ["points"]
---

# Upsert points

`PUT /collections/{collection_name}/points`

Perform insert + updates on points. If point with given ID already exists - it will be overwritten.

## Path parameters

- `collection_name` string, required

## Query parameters

- `wait` boolean
- `ordering` 'weak' | 'medium' | 'strong' — Defines write ordering guarantees for collection operations * `weak` - write operations may be reordered, works faster, default * `medium` - write operations go through dynamically selected leader, may be inconsistent for a short period of time in case of leader change * `strong` - Write operations go through the permanent leader, consistent, but may be unavailable if leader is down

## Request body

- union
  - PointsBatch
    - `batch` Batch, required
      - `ids` ExtendedPointId[], required
        - union — Type, used for specifying point ID in user interface
          - integer
          - string, uuid
      - `vectors` union, required
        - array[]
          - number[]
        - array[]
          - array[]
            - number[]
        - object
        - Document[]
          - `text` string, required — Text of the document This field will be used as input for the embedding model
          - `model` string, nullable — Name of the model used to generate the vector List of available models depends on a provider
      - `payloads` union[], nullable
        - union
          - Payload
          - unknown
    - `shard_key` union
      - union
        - union
          - string
          - integer
        - ShardKey[]
          - union
            - string
            - integer
      - unknown
  - PointsList
    - `points` PointStruct[], required
      - `id` union, required — Type, used for specifying point ID in user interface
        - integer
        - string, uuid
      - `vector` union, required — Full vector data per point separator with single and multiple vector modes
        - number[]
        - array[]
          - number[]
        - object
        - Document — WARN: Work-in-progress, unimplemented Text document for embedding. Requires inference infrastructure, unimplemented.
          - `text` string, required — Text of the document This field will be used as input for the embedding model
          - `model` string, nullable — Name of the model used to generate the vector List of available models depends on a provider
      - `payload` union — Payload values (optional)
        - Payload
        - unknown
    - `shard_key` union
      - union
        - union
          - string
          - integer
        - ShardKey[]
          - union
            - string
            - integer
      - unknown

## Response `200`

successful operation

- object
  - `time` number, float — Time spent to process this request
  - `status` string
  - `result` UpdateResult
    - `operation_id` integer, nullable — Sequential number of the operation
    - `status` 'acknowledged' | 'completed', required — `Acknowledged` - Request is saved to WAL and will be process in a queue. `Completed` - Request is completed, changes are actual.

## Other responses

- `default` — error
- `4XX` — error

## Changes

- **2024-09-09** `99f8ca65a207` — 1 breaking, 3 info
  - removed `subschema #3` from the `anyOf[#/components/schemas/PointsBatch]/batch/vectors` request property `anyOf` list
  - added `#/components/schemas/Document` to the `anyOf[#/components/schemas/PointsList]/points/items/vector` request property `anyOf` list
  - added `#/components/schemas/Document` to the `anyOf[#/components/schemas/PointsList]/points/items/vector/anyOf[subschema #3]/additionalProperties/` request property `anyOf` list
  - added `subschema #3, subschema #4` to the `anyOf[#/components/schemas/PointsBatch]/batch/vectors` request property `anyOf` list
- **2024-08-13** `d530ad1be7de` — 7 breaking, 7 info
  - removed `subschema #1, subschema #2` from the `anyOf[#/components/schemas/PointsBatch]/batch/ids/items/` request property `anyOf` list
  - removed `subschema #1, subschema #2` from the `anyOf[#/components/schemas/PointsBatch]/shard_key/anyOf[#/components/schemas/ShardKeySelector]/anyOf[#/components/schemas/ShardKey]/` request property `anyOf` list
  - removed `subschema #1, subschema #2` from the `anyOf[#/components/schemas/PointsBatch]/shard_key/anyOf[#/components/schemas/ShardKeySelector]/anyOf[subschema #2]/items/` request property `anyOf` list
  - removed `subschema #1, subschema #2` from the `anyOf[#/components/schemas/PointsList]/points/items/id` request property `anyOf` list
  - …10 more
- …earlier changes not shown

[Full history](https://skmtc.dev/qdrant/apis/qdrant-api/changes/collections/:collection_name/points/put.md)

---

[API](https://skmtc.dev/qdrant/apis/qdrant-api.md) · [All operations](https://skmtc.dev/qdrant/apis/qdrant-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/qdrant/qdrant-api/revisions/99f8ca65a207/schema)
