← Back to Network domain

Network.enableDeviceBoundSessions

Sets up tracking device bound sessions and fetching of initial set of sessions.

Domain: Network experimental

Parameters

NameTypeDescription
enablebooleanWhether to enable or disable events.

Example Request

{
  "id": 1,
  "method": "Network.enableDeviceBoundSessions",
  "params": {
    "enable": true
  }
}

Example Response

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

Usage in Node.js

const result = await send('Network.enableDeviceBoundSessions', {"enable": true});
console.log(result);