@@ -12,23 +12,73 @@ coppa_supported: true
12
12
pbs : true
13
13
sidebarType : 1
14
14
schain_supported : true
15
+ ortb_blocking_supported : true
15
16
---
16
17
17
18
### Note:
19
+
18
20
[ Vidoomy
] ( https://vidoomy.com/ ) , for more info please contact
[email protected]
19
21
20
22
### Bid Params
21
23
22
24
{: .table .table-bordered .table-striped }
23
- | Name | Scope | Description | Example | Type |
24
- | ------------------| ----------| ------------------| ------------------------------| ----------|
25
- | ` id ` | required | id | ` 123123 ` | ` string ` |
26
- | ` pid ` | required | pid | ` '123123' ` | ` string ` |
27
25
26
+ | Name | Scope | Description | Example | Type |
27
+ | -------| ----------| -------------| ------------| ----------|
28
+ | ` id ` | required | id | ` 123123 ` | ` string ` |
29
+ | ` pid ` | required | pid | ` '123123' ` | ` string ` |
28
30
29
31
### Bid Params (Prebid Server)
30
32
31
33
{: .table .table-bordered .table-striped }
32
- | Name | Scope | Description | Example | Type |
33
- | ------------------| ----------| ------------------| ------------------------------| ----------|
34
- | ` zoneId ` | required | Zone Id | "123123" | ` string ` |
34
+
35
+ | Name | Scope | Description | Example | Type |
36
+ | ----------| ----------| ---------------------------------------------| -------------------| ----------------|
37
+ | ` zoneId ` | required | Zone Id | "123123" | ` string ` |
38
+ | ` bcat ` | optional | List of blocked advertiser categories (IAB) | ` ['IAB1-1'] ` | ` string array ` |
39
+ | ` badv ` | optional | Blocked Advertiser Domains | ` ['example.com'] ` | ` string array ` |
40
+ | ` bapp ` | optional | blocked advertiser mobile app bundles | ` ['app.com'] ` | ` string array ` |
41
+ | ` btype ` | optional | blocked creative types (e.g. XHTML) | ` [1, 2, 3] ` | ` int array ` |
42
+ | ` battr ` | optional | blocked creative attributes (e.g. audio) | ` [1, 2, 3] ` | ` int array ` |
43
+
44
+ Notes:
45
+
46
+ - Preferred to provide the ` bcat ` , ` badv ` , ` bapp ` , ` btype ` and ` battr ` within the first party data (above). When both
47
+ methods are provided, first
48
+ party data values will be prioritized.
49
+
50
+ ### First Party Data
51
+
52
+ Publishers can use the ` ortb2 ` configuration parameter to provide First Party Data.
53
+
54
+ #### OpenRTB Parameters
55
+
56
+ The following table contains currently supported parameters we parse.
57
+
58
+ {: .table .table-bordered .table-striped }
59
+
60
+ | Name | Scope | Description | Example | Type |
61
+ | ---------| ----------| ---------------------------------------------| -------------------| ---------|
62
+ | ` bcat ` | optional | List of blocked advertiser categories (IAB) | ` ['IAB1-1'] ` | ` Array ` |
63
+ | ` badv ` | optional | Blocked Advertiser Domains | ` ['example.com'] ` | ` Array ` |
64
+ | ` bapp ` | optional | blocked advertiser mobile app bundles | ` ['app.com'] ` | ` Array ` |
65
+ | ` btype ` | optional | blocked creative types (e.g. XHTML) | ` [1, 2, 3] ` | ` Array ` |
66
+ | ` battr ` | optional | blocked creative attributes (e.g. audio) | ` [1, 2, 3] ` | ` Array ` |
67
+
68
+ Notes:
69
+
70
+ - will extract the bcat,badv,bapp,btype,battr if passed within ` ortb2 `
71
+
72
+ Example configuration:
73
+
74
+ ```
75
+ pbjs.setConfig({
76
+ ortb2: {
77
+ bcat: ['IAB1-1'],
78
+ badv: ['example.com'],
79
+ bapp: ['app.com'],
80
+ btype: [1, 2, 3],
81
+ battr: [1, 2, 3]
82
+ }
83
+ });
84
+ ```
0 commit comments