POST
/
vectors
/
{vector_id}
/
delete
curl --request POST \
  --url https://app.luly.ai/api/vectors/{vector_id}/delete \
  --header 'authorization: <authorization>' \
  --header 'vector_id: <vector_id>'
{
  "message": "Vector deleted"
}

Headers

authorization
string
required

Your API key for authentication.

Path Parameters

vector_id
string
required

The vector_id of the vector store to update.

Response

vector_id
string

The unique identifier for the vector store.

Will start with “KB-”.

{
  "message": "Vector deleted"
}