delete_kv_value
Remove a specific key from Cloudflare Workers KV storage to manage stored data and maintain namespace organization.
Instructions
Delete a key from Workers KV storage
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| account_id | No | Account ID (uses default from config if not provided) | |
| namespace_id | Yes | The KV namespace ID | |
| key | Yes | The key to delete |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"description": "Account ID (uses default from config if not provided)",
"type": "string"
},
"key": {
"description": "The key to delete",
"type": "string"
},
"namespace_id": {
"description": "The KV namespace ID",
"type": "string"
}
},
"required": [
"namespace_id",
"key"
],
"type": "object"
}