Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3ac6fc7

Browse files
authored
Updated docs for Vidoomy blocking supported (prebid#4493)
1 parent f0a8a0d commit 3ac6fc7

File tree

1 file changed

+57
-7
lines changed

1 file changed

+57
-7
lines changed

dev-docs/bidders/vidoomy.md

Lines changed: 57 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,73 @@ coppa_supported: true
1212
pbs: true
1313
sidebarType: 1
1414
schain_supported: true
15+
ortb_blocking_supported: true
1516
---
1617

1718
### Note:
19+
1820
[Vidoomy](https://vidoomy.com/), for more info please contact [email protected]
1921

2022
### Bid Params
2123

2224
{: .table .table-bordered .table-striped }
23-
| Name | Scope | Description | Example | Type |
24-
|------------------|----------|------------------|------------------------------|----------|
25-
| `id` | required | id | `123123` | `string` |
26-
| `pid` | required | pid | `'123123'` | `string` |
2725

26+
| Name | Scope | Description | Example | Type |
27+
|-------|----------|-------------|------------|----------|
28+
| `id` | required | id | `123123` | `string` |
29+
| `pid` | required | pid | `'123123'` | `string` |
2830

2931
### Bid Params (Prebid Server)
3032

3133
{: .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

Comments
 (0)