# Delete a document — Vector database Botize method — `btzvectors.delete_document` (action). Removes a document from a database by its key. Deleting something that is not there is not an error. This is an action: it runs as a step of a task. Several can be chained. ## Fields you set The field's internal name, its type and the values it accepts. These fields accept `{{...}}` tags from earlier steps. - `base` *(string)* — Database name - `doc_key` *(string)* — Document key ## Output variables Data this step makes available. Reference them in later steps with the double-brace tag. - `{{doc_key}}` *(text)* — Document key. The key that was asked to be deleted - `{{base}}` *(text)* — Database. Name of the database used - `{{deleted}}` *(boolean)* — It existed and was deleted. 1 if the document existed, 0 if there was nothing to delete - `{{documents}}` *(int)* — Documents in the database. How many documents the database holds now - `{{remaining}}` *(int)* — Remaining capacity. How many more documents fit before reaching the limit ## This app Every trigger and action for Vector database: https://botize.com/en/app/btzvectors.md ## How to build this An AI assistant (Claude, ChatGPT, Cursor…) can create and edit these tasks in the user's account through the Botize MCP connector, included in every plan: https://webhook.botize.es/mcp - Connection guide: https://botize.com/en/mcp - Agent map: https://botize.com/llms.txt - New account: https://botize.com/en/join (500 free operations, no card) --- Machine-readable summary for AI assistants. Human version: https://botize.com/en/method/btzvectors/delete_document