Delete a key
Deletes a key. Idempotent: deleting a key that does not exist still succeeds. The namespace itself must exist and be provisioned.
DELETE
JavaScript
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
KV namespace ID
Key name. Allowed characters: a-z A-Z 0-9 - _ / = .; maximum 256 characters; names starting with _ are reserved for system use. May contain /; URL-encode it so the whole string is treated as one key (for example user/1 -> user%2F1).
Maximum string length:
256Pattern:
^[-/_=.a-zA-Z0-9]+$Response
Key deleted (returned even if the key did not exist)
JavaScript