Skip to main content
POST
/
api
/
v1
/
vector
/
write
Upsert vectors
curl --request POST \
  --url http://localhost:8080/api/v1/vector/write \
  --header 'Content-Type: application/protobuf+json' \
  --data '
{
  "upsertVectors": [
    {
      "id": "<string>",
      "attributes": {}
    }
  ]
}
'
{
  "status": "success",
  "vectorsUpserted": 2
}

Body

Request body for upserting vectors.

upsertVectors
object[]
required

One or more vectors to upsert.

Response

Vectors upserted successfully.

Response after successfully upserting vectors.

status
string
required
Example:

"success"

vectorsUpserted
integer<int32>
required

Number of vectors upserted.