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

Skip to content

Commit ba3ef87

Browse files
GeneGeniejeanstemp
andauthored
Update adtelligent doc (prebid#2010)
* Update adtelligent doc * minor edits for readability Co-authored-by: Jean Stemp <[email protected]>
1 parent aa12459 commit ba3ef87

File tree

1 file changed

+53
-11
lines changed

1 file changed

+53
-11
lines changed

dev-docs/bidders/adtelligent.md

Lines changed: 53 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
---
22
layout: bidder
33
title: Adtelligent
4-
description: Prebid Adtelligent Bidder Adaptor
4+
description: Prebid Adtelligent Bidder Adapter
55
hide: true
66
biddercode: adtelligent
7+
media_types: video,banner
78
gdpr_supported: true
8-
media_types: video
9+
userIds: britepoolId, criteo, digitrust, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
10+
schain_supported: true
11+
coppa_supported: true
12+
usp_supported: true
913
---
1014

1115
### Bid params
@@ -15,24 +19,25 @@ media_types: video
1519
|-------|----------|---------------------------------|----------|-----------|
1620
| `aid` | required | The source ID from Adtelligent. | `350975` | `integer` |
1721

18-
1922
### Description
2023
Get access to multiple demand partners across Adtelligent AdExchange and maximize your yield with Adtelligent header bidding adapter.
2124

2225
Adtelligent header bidding adapter connects with Adtelligent demand sources in order to fetch bids.
23-
This adapter provides a solution for accessing Video demand and display demand
26+
This adapter provides a solution for accessing Video demand and display demand.
27+
28+
Adtelligent now supports adpod.
2429

2530
### Test Parameters
2631
```
2732
var adUnits = [
2833
2934
// Video instream adUnit
3035
{
31-
code: 'div-test-div',
32-
sizes: [[640, 480]],
36+
code: 'test-div',
3337
mediaTypes: {
3438
video: {
35-
context: 'instream'
39+
context: 'instream',
40+
playerSize: [640, 480]
3641
}
3742
},
3843
bids: [{
@@ -45,11 +50,29 @@ This adapter provides a solution for accessing Video demand and display demand
4550
4651
// Video outstream adUnit
4752
{
48-
code: 'outstream-test-div',
53+
code: 'test-div',
54+
mediaTypes: {
55+
video: {
56+
context: 'outstream',
57+
playerSize: [640, 480]
58+
}
59+
},
60+
bids: [{
61+
bidder: 'adtelligent',
62+
params: {
63+
aid: 331133
64+
}
65+
}]
66+
},
67+
68+
// Video ADPOD adUnit
69+
{
70+
code: 'test-div',
4971
sizes: [[640, 480]],
5072
mediaTypes: {
5173
video: {
52-
context: 'outstream'
74+
context: 'adpod',
75+
playerSize: [640, 480]
5376
}
5477
},
5578
bids: [{
@@ -62,8 +85,12 @@ This adapter provides a solution for accessing Video demand and display demand
6285
6386
// Banner adUnit
6487
{
65-
code: 'div-test-div',
66-
sizes: [[300, 250]],
88+
code: 'test-div',
89+
mediaTypes:{
90+
banner:{
91+
sizes: [[300, 250]]
92+
}
93+
}
6794
bids: [{
6895
bidder: 'adtelligent',
6996
params: {
@@ -73,3 +100,18 @@ This adapter provides a solution for accessing Video demand and display demand
73100
}
74101
];
75102
```
103+
104+
### Additional Configuration
105+
106+
It is possible to configure requests to be split into chunks so as to have fewer bid requests in a single http request
107+
(default value is 10).
108+
109+
```
110+
pbjs.setBidderConfig({
111+
config: {
112+
adtelligent: {
113+
chunkSize: 1 // makes 1 http request per 1 adunit configured
114+
}
115+
}
116+
});
117+
```

0 commit comments

Comments
 (0)