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
Copy file name to clipboardExpand all lines: prebid-server/endpoints/openrtb2/pbs-endpoint-auction.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -589,8 +589,8 @@ to set these params on the response at `response.seatbid[i].bid[j].ext.prebid.ta
589
589
| mediatypepricegranularity.native | no | Defines how PBS quantizes bid prices into buckets for native. | (see below) | object |
590
590
| mediatypepricegranularity.TYPE.precision | no | How many decimal places are there in price buckets. | Defaults to 2 | integer |
591
591
| mediatypepricegranularity.TYPE.ranges | no | Same as pricegranularity.ranges | (see below) | array of objects |
592
-
| includewinners | no | Whether to include targeting for the winning bids in response.seatbid[].bid[]. ext.prebid.targeting. Defaults to false. | true | boolean |
593
-
| includebidderkeys | no | Whether to include targeting for the best bid from each bidder in response.seatbid[].bid[]. ext.prebid.targeting. Defaults to false. | true | boolean |
592
+
| includewinners | no | Whether to include targeting for the winning bids in response.seatbid[].bid[]. ext.prebid.targeting. Defaults to true. | true | boolean |
593
+
| includebidderkeys | no | Whether to include targeting for the best bid from each bidder in response.seatbid[].bid[]. ext.prebid.targeting. Defaults to true. | true | boolean |
594
594
| includeformat | no | Whether to include the "hb_format" targeting key. Defaults to false. | false | boolean |
595
595
| preferdeals | no | If targeting is returned and this is true, PBS will choose the highest value deal before choosing the highest value non-deal. Defaults to false. | true | boolean |
596
596
| alwaysincludedeals | no | If true, generate hb_ATTR_BIDDER values for all bids that have a dealid | true | boolean |
@@ -611,10 +611,10 @@ to set these params on the response at `response.seatbid[i].bid[j].ext.prebid.ta
611
611
// "pricegranularity": "medium"
612
612
}]
613
613
},
614
-
"includewinners":true, // Optional param defaulting to false
615
-
"includebidderkeys":false, // Optional param defaulting to false
614
+
"includewinners":true, // Optional param defaulting to true
615
+
"includebidderkeys":false, // Optional param defaulting to true
616
616
"includeformat":false, // Optional param defaulting to false
617
-
"preferdeals":true// Optional param defaulting to false
617
+
"preferdeals":true,// Optional param defaulting to false
618
618
"alwaysincludedeals":true// Optional param defaulting to false
619
619
}
620
620
}
@@ -626,7 +626,7 @@ The list of price granularity ranges must be given in order of increasing `max`
626
626
627
627
For backwards compatibility the following strings will also be allowed as price granularity definitions. There is no guarantee that these will be honored in the future. "One of ['low', 'med', 'high', 'auto', 'dense']" See [price granularity definitions](/adops/price-granularity.html).
628
628
629
-
One of "includewinners" or "includebidderkeys" should be true if you want targeting - both default to false if unset. If both are false, then no targeting keys will be set, which is better configured by omitting targeting altogether.
629
+
One of "includewinners" or "includebidderkeys" should be true if you want targeting - both default to true if unset. If both are true, then all the targeting keys will be set, which is better configured by omitting targeting altogether.
630
630
631
631
The parameter "includeformat" indicates the type of the bid (banner, video, etc) for multiformat requests. It will add the key `hb_format` and/or `hb_format_{bidderName}` as per "includewinners" and "includebidderkeys" above.
0 commit comments