← Back to Storage domain

Storage.getInterestGroupDetails

Gets details for a named interest group.

Domain: Storage experimental

Parameters

NameTypeDescription
ownerOriginstring
namestring

Returns

NameTypeDescription
detailsobjectThis largely corresponds to: https://wicg.github.io/turtledove/#dictdef-generatebidinterestgroup but has absolute expirationTime instead of relative lifetimeMs and also adds joiningOrigin.

Example Request

{
  "id": 1,
  "method": "Storage.getInterestGroupDetails",
  "params": {
    "ownerOrigin": "ownerOrigin-value",
    "name": "example-name"
  }
}

Example Response

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

Usage in Node.js

const result = await send('Storage.getInterestGroupDetails', {"ownerOrigin": "ownerOrigin-value", "name": "example-name"});
console.log(result);
// {"details": {}}