← Back to Storage domain
Storage.getInterestGroupDetails
Gets details for a named interest group.
Domain: Storage
experimental
Parameters
| Name | Type | Description |
ownerOrigin | string | |
name | string | |
Returns
| Name | Type | Description |
details | object | This 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": {}}