Skip to content

Commit 4b004ba

Browse files
committed
Update Start.io Bid Adapter to clarify prebid params for iframe-based user sync configuration
1 parent 9adb313 commit 4b004ba

1 file changed

Lines changed: 14 additions & 6 deletions

File tree

modules/startioBidAdapter.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,15 +94,23 @@ var nativeAdUnits = [
9494
];
9595
```
9696

97-
# User Syncs
97+
### Prebid Params Enabling User Sync
9898

99-
The adapter supports iframe-based user syncing. When `iframeEnabled` is set to `true` in the sync options, the adapter returns a single iframe sync URL. GDPR, USP (CCPA), and GPP consent strings are automatically appended as query parameters when present.
99+
To enable iframe-based user syncing for Start.io, include the `filterSettings` configuration in your `userSync` setup:
100100

101-
```
101+
```javascript
102102
pbjs.setConfig({
103-
userSync: {
104-
iframeEnabled: true
105-
}
103+
userSync: {
104+
userIds: [{
105+
name: 'startioId'
106+
}],
107+
filterSettings: {
108+
iframe: {
109+
bidders: ['startio'],
110+
filter: 'include'
111+
}
112+
}
113+
}
106114
});
107115
```
108116

0 commit comments

Comments
 (0)