Whatever message this page gives is out now! Go check it out!
vectorStoreClient.delete(id)Parameter | Type | Required | Description |
id | String | Yes | The unique identifier of the item to delete. |
<cfscript>
vectorstoreclient = VectorStore();
id = vectorstoreclient.add({
"text": "Temporary row",
"metadata": { "batch": "test-2026-03", "status": "draft" }
});
vectorstoreclient.delete(id);
</cfscript>