Skip to content

Commit 5c0df25

Browse files
authored
Fix the default value for includebidderkeys and includewinners targeting params (#6365)
1 parent c7723b2 commit 5c0df25

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

prebid-server/endpoints/openrtb2/pbs-endpoint-auction.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -589,8 +589,8 @@ to set these params on the response at `response.seatbid[i].bid[j].ext.prebid.ta
589589
| mediatypepricegranularity.native | no | Defines how PBS quantizes bid prices into buckets for native. | (see below) | object |
590590
| mediatypepricegranularity.TYPE.precision | no | How many decimal places are there in price buckets. | Defaults to 2 | integer |
591591
| 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 |
594594
| includeformat | no | Whether to include the "hb_format" targeting key. Defaults to false. | false | boolean |
595595
| 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 |
596596
| 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
611611
// "pricegranularity": "medium"
612612
}]
613613
},
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
616616
"includeformat": false, // Optional param defaulting to false
617-
"preferdeals": true // Optional param defaulting to false
617+
"preferdeals": true, // Optional param defaulting to false
618618
"alwaysincludedeals": true // Optional param defaulting to false
619619
}
620620
}
@@ -626,7 +626,7 @@ The list of price granularity ranges must be given in order of increasing `max`
626626

627627
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).
628628

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.
630630

631631
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.
632632

0 commit comments

Comments
 (0)