← Back to Storage domain

Storage.untrackCacheStorageForStorageKey

Unregisters storage key from receiving notifications for cache storage.

Domain: Storage experimental

Parameters

NameTypeDescription
storageKeystringStorage key.

Example Request

{
  "id": 1,
  "method": "Storage.untrackCacheStorageForStorageKey",
  "params": {
    "storageKey": "storageKey-value"
  }
}

Example Response

{
  "id": 1,
  "result": {}
}

Usage in Node.js

const result = await send('Storage.untrackCacheStorageForStorageKey', {"storageKey": "storageKey-value"});
console.log(result);