You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Start.io User ID submodule generates and persists a unique user identifier by fetching it from a publisher-supplied endpoint. The ID is stored in both cookies and local storage for subsequent page loads and is made available to other Prebid.js modules via the standard `eids` interface.
4
+
5
+
For integration support, contact prebid@start.io.
6
+
7
+
### Prebid Params Enabling User Sync
8
+
9
+
To enable iframe-based user syncing for Start.io, include the `filterSettings` configuration in your `userSync` setup:
10
+
11
+
```javascript
12
+
pbjs.setConfig({
13
+
userSync: {
14
+
userIds: [{
15
+
name:'startioId'
16
+
}],
17
+
filterSettings: {
18
+
iframe: {
19
+
bidders: ['startio'],
20
+
filter:'include'
21
+
}
22
+
}
23
+
}
24
+
});
25
+
```
26
+
27
+
This configuration allows Start.io to sync user data via iframe, which is necessary for cross-domain user identification.
28
+
29
+
## Parameter Descriptions for the `userSync` Configuration Section
30
+
31
+
The below parameters apply only to the Start.io User ID integration.
32
+
33
+
| Param under userSync.userIds[]| Scope | Type | Description | Example |
34
+
| --- | --- | --- | --- | --- |
35
+
| name | Required | String | The name of this module. |`"startioId"`|
0 commit comments