From a21ffbc82f08d4fc330400c61ebe26081616d80b Mon Sep 17 00:00:00 2001 From: Komal Kumari <169047654+pm-komal-kumari@users.noreply.github.com> Date: Fri, 6 Sep 2024 17:43:49 +0530 Subject: [PATCH] Add maxBid documentation for setConfig (#5585) Co-authored-by: Komal Kumari --- dev-docs/publisher-api-reference/setConfig.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/dev-docs/publisher-api-reference/setConfig.md b/dev-docs/publisher-api-reference/setConfig.md index 187b29bc6b..fef8e66c1e 100644 --- a/dev-docs/publisher-api-reference/setConfig.md +++ b/dev-docs/publisher-api-reference/setConfig.md @@ -1347,6 +1347,18 @@ Inversely, if you wish for the alias registry to be private you can do so by usi pbjs.setConfig({aliasRegistry: 'private'}) ``` +### Set Max Bid + + + +Prebid ensures that the bid response price doesn't exceed the maximum bid. If the CPM (after currency conversion) is higher than the maxBid, the bid is rejected. The default maxBid value is 5000. You can adjust maxBid with: + +```javascript +pbjs.setConfig({ + maxBid: 10 +}); +``` + ### General adapter Configuration