File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,3 +52,37 @@ pbjs.bidderSettings = {
5252| Name | Scope | Description | Example | Type |
5353| ---------------| ----------| -------------| ---------| ----------|
5454| ` placementId ` | required | The placementId of the ad slot. | ` '_jWuc8Hks' ` | ` string ` |
55+
56+ ### ORTB Blocking
57+
58+ Kargo supports blocking advertisers in ` badv ` and categories in ` bcat ` parameters.
59+ The blocked advertisers/categories list has no length limitation, but response timeout is more likely to occur as the number of entries grow.
60+ Blocked advertisers list (` badv ` ) is an array of domains as strings.
61+ Blocked categories list (` bcat ` ) is an array of IAB categories as strings.
62+
63+ For example:
64+
65+ #### Globally defined ORTB Blocking
66+
67+ ``` javascript
68+ pbjs .setConfig ({
69+ ortb2: {
70+ badv: [" domain1.com" , " domain2.com" ],
71+ bcat: [" IAB23-1" , " IAB23-5" , " IAB25-3" , " IAB25-2" ]
72+ }
73+ )};
74+ ` ` `
75+
76+ #### ORTB Blocking specific only to rtbhouse bidder
77+
78+ ` ` ` javascript
79+ pbjs .setBidderConfig ({
80+ bidders: [' kargo' ],
81+ config: {
82+ ortb2: {
83+ badv: [" domain1.com" , " domain2.com" ],
84+ bcat: [" IAB23-1" , " IAB23-5" , " IAB25-3" , " IAB25-2" ]
85+ }
86+ }
87+ });
88+ ` ` `
You can’t perform that action at this time.
0 commit comments