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 Start.io-managed endpoint. This endpoint is fixed within the submodule implementation and is not configurable via Prebid.js parameters. 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
+
storage: {
17
+
type:'cookie&html5', // 'cookie', 'html5', or 'cookie&html5'
18
+
name:'startioId',
19
+
expires:90// optional, 90 days by default
20
+
}
21
+
}],
22
+
filterSettings: {
23
+
iframe: {
24
+
bidders: ['startio'],
25
+
filter:'include'
26
+
}
27
+
}
28
+
}
29
+
});
30
+
```
31
+
32
+
This configuration allows Start.io to sync user data via iframe, which is necessary for cross-domain user identification.
33
+
34
+
## Parameter Descriptions for the `userSync` Configuration Section
35
+
36
+
The below parameters apply only to the Start.io User ID integration.
37
+
38
+
| Param under userSync.userIds[]| Scope | Type | Description | Example |
39
+
| --- | --- | --- | --- | --- |
40
+
| name | Required | String | The name of this module. |`"startioId"`|
41
+
| storage | Required | Object | Storage configuration for the user ID. ||
42
+
| storage.type | Required | String | Type of storage: `"cookie"`, `"html5"`, or `"cookie&html5"`. |`"cookie&html5"`|
43
+
| storage.name | Required | String | The name used to store the user ID. |`"startioId"`|
44
+
| storage.expires | Optional | Number | Number of days before the stored ID expires. Defaults to `90`. |`365`|
0 commit comments