POSThttp://localhost:6333/collections/collection_name/points/batch
Path Parameters
Query Parameters
Body Parameters
View in API Reference
Request
$curl -X POST http://localhost:6333/collections/collection_name/points/batch \
> -H "api-key: " \
> -H "Content-Type: application/json" \
> -d '{
> "operations": [
> {
> "upsert": {
> "batch": {
> "ids": [
> 42
> ],
> "vectors": [
> [
> 1.1
> ]
> ]
> }
> }
> }
> ]
>}'
Response