Delete Memory Key
kv_deletePermanently remove one key from your namespace, freeing a slot against the 1000-key limit. Use it when a stored value is wrong or unwanted before its TTL runs out; if you only want the value to lapse on schedule, do nothing and let the TTL expire instead. Deletes exactly one key - there is no prefix or wildcard form, so clearing several keys means one call each, and kv_list is how you find their names first. Idempotent and safe to retry: a key that is already gone or expired returns deleted=false rather than an error. The value is not recoverable afterwards.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | Key within the namespace. | |
| namespace | Yes | Your private namespace. Pick a long unique string; it acts as the access key. |