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
*You*must* only include one ID field - either `tagId` or `placement`, not both. If you have questions on which parameter to use, please reach out to your Account Manager.
34
+
The `tagId` and `placement` are **mutually exclusive** but at least one is required. If you pass both, `tagId` takes precedence.
Copy file name to clipboardExpand all lines: dev-docs/bidders/fwssp.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,18 +36,18 @@ The following bid params are for use with the Prebid.js bid adapter:
36
36
|`profile`| required | Profile Name - The value should contain a profile name. and NOT a numeric profile ID. This can either include the network ID prefix or with the profile name alone | "96749:global-js" |`string`|
37
37
|`siteSectionId`| required | Custom Site Section tag or numeric Site Section ID | "ss_12345" |`string`|
38
38
|`videoAssetId`| required | Custom content Video Asset ID | "pause_ad_video" |`string`|
|`adRequestKeyValues`| optional | An object of ad request key-value pairs. | { \_fw_player_width: '1920', \_fw_player_height: '1080' } |`object`|
42
44
|`gdpr_consented_providers`| optional | List of Consented Providers. A comma-separated list of ids. | "216,229,80,359,479" |`string`|
43
45
|`tpos`| optional | Slot time position in seconds. Default: 0 | 10 |`number`|
44
46
|`slid`| optional | Slot custom ID. Any string with valid letters/digits/symbols. Default: "Preroll_1" | "CustomPreroll" |`string`|
45
47
|`slau`| optional | Specify custom ad unit names for this slot. Multiple ad unit names can be put into this parameter, separated by "\|". Ad unit group names are also supported but you can only specify one ad unit group; multiple ad unit groups or mixed ad unit group and ad unit names are not supported. Default: "preroll" | "pre1\|pre2" |`string`|
46
-
|`minD`| optional | The minimum duration of a slot, in seconds. | 30 |`number`|
47
-
|`maxD`| optional | The maximum duration of a slot, in seconds. | 30 |`number`|
48
48
|`listeners`| optional | An object of AdManager event listeners | { onSlotStarted: this.onSlotStarted, adEvent: this.onAdEvent, onSlotEnded: this.onSlotEnded } |`object`|
49
-
|`isMuted`| optional |Constrols if ad playback should start with volume muted. Default: true | false |`boolean`|
50
-
|`showMuteButton`| optional | Controls if a mute button should be shown during ad playback. Default: false | true |`boolean`|
49
+
|`isMuted`| optional |Controls if ad playback should start with volume muted. Default: true | false |`boolean`|
50
+
|`showMuteButton`| optional | Controls if a mute button should be shown during ad playback. Default: false | true |`boolean`|
51
51
|`playerParams`| optional | An object of AdManager player parameter values | { "renderer.video.startDetectTimeout": 5000 } |`object`|
52
52
|`sdkVersion`| optional | The AdManager sdk version to use for playback. This is only valid for "outstream" formats. Default: "7.10.0" | "7.11.0" |`string`|
53
53
|`format`| optional | The format to use for displaying the ad. Default: outstream | "inbanner" |`string`|
Copy file name to clipboardExpand all lines: dev-docs/bidders/lane4.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,3 +90,30 @@ var adUnits = [
90
90
}
91
91
];
92
92
```
93
+
94
+
#### First Party Data
95
+
96
+
In release 4.30 and later, publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). The following fields are supported:
97
+
98
+
* ortb2.user.id
99
+
* ortb2.user.buyeruid
100
+
* ortb2.user.keywords
101
+
* ortb2.user.ext.*
102
+
103
+
Example first party data that's available to all bidders and all adunits:
104
+
105
+
```javascript
106
+
pbjs.setConfig({
107
+
ortb2: {
108
+
user: {
109
+
id:123456789, // Unique pseudonymized ID for the user (e.g., NPI).
110
+
buyeruid:987654321, // DSP-assigned user ID for identity resolution.
111
+
keywords:"kw1,kw2", // Interest or specialty tags (e.g., oncology, cardiology)
112
+
ext: {
113
+
key1:"values", // Custom healthcare metadata (e.g., icd10), single or comma seperated.
114
+
key2:"values"// Additional campaign context (e.g., ndc), single or comma seperated.
0 commit comments