Skip to content

Commit 1f151b2

Browse files
ptimbretg
authored andcommitted
Update indexExchange.md (prebid#786)
Clarify use of `siteId` and fix mismatch of `siteId` for 'flex position' units based on documentation emailed out: https://gallery.mailchimp.com/41ac5884406c48bd6f31af7a1/files/09ffb712-5455-4c0c-8453-592c5a3bcb67/Prebid_1.0_Upgrade_Doc_052118_v2.pdf Further clarification is recommended, given the comment in the FAQ: > An IX site ID maps to a single size, whereas an ad unit can have multiple sizes. To ensure that the right site ID is mapped to the correct size in the ad unit we require the size to be explicitly stated. ...which contradicts the statement in the upgrade documentation linked above, which states: > Please note that you can re-use the existing `siteId` within the same flex position.
1 parent 9e93c99 commit 1f151b2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dev-docs/bidders/indexExchange.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,19 +154,21 @@ var adUnits = [{
154154
bids: [{
155155
bidder: 'ix',
156156
params: {
157-
siteId: '4622',
157+
siteId: '12345',
158158
size: [300, 250]
159159
}
160160
}, {
161161
bidder: 'ix',
162162
params: {
163-
siteId: '6242',
163+
siteId: '12345',
164164
size: [300, 600]
165165
}
166166
}]
167167
}];
168168
```
169169

170+
Please note that you can re-use the existing `siteId` within the same flex position.
171+
170172
##### 2. Include `ixBidAdapter` in your build process
171173

172174
When running the build command, include `ixBidAdapter` as a module.

0 commit comments

Comments
 (0)