Skip to content

Commit 457c7c6

Browse files
adzida-adqueryadqueryAdrian Dzida
authored
adQuery: update docs - instream/outstream video (#6520)
* adquery: changes in specification * adquery: changes in specification * adquery: update bidder documentation with expanded specs and examples * update docs * update docs --------- Co-authored-by: ppydys <p.pydys@openmobi.pl> Co-authored-by: adquery <89853721+adquery@users.noreply.github.com> Co-authored-by: Adrian Dzida <a.dzida@openmobi.pl>
1 parent bb594ae commit 457c7c6

1 file changed

Lines changed: 14 additions & 9 deletions

File tree

dev-docs/bidders/adquery.md

Lines changed: 14 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@ sidebarType: 1
1414
media_types: banner, video
1515
---
1616

17-
### Bid Params
17+
## Bid Params
1818

1919
{: .table .table-bordered .table-striped }
20+
2021
| Name | Scope | Description | Example | Type |
2122
|---------------|----------|-----------------------------------------------------------------------------|--------------------------------------------------------------------------|-----------|
2223
| `placementId` | required | Placement ID provided by Adquery (must match the type/format in dashboard) | `d30f79cf7fef47bd7a5611719f936539bec0d2e9` | `string` |
@@ -25,11 +26,13 @@ media_types: banner, video
2526
**Notes:**
2627

2728
- `placementId` is always required and should correspond to a placement configured in the Adquery dashboard for the specific `type`.
28-
- `type` is mandatory in bidder params — it determines the creative format (banner, video, interstitial, anchorad).
29-
- For **banner** ads: Define sizes in `mediaTypes.banner.sizes`. The adapter automatically parses and sends them.
30-
- For **video** ( outstream ): Use `type: 'video'` + `mediaTypes.video.context: 'outstream'`. A renderer is required for rendering (e.g. InRenderer or similar). In-stream video is not currently supported by this adapter.
31-
- For **video** ( instream ): Use `type: 'video'` + `mediaTypes.video.context: 'instream'`. A renderer is required for rendering (e.g. InRenderer or similar). In-stream video is not currently supported by this adapter.
32-
- For special formats (`interstitial`, `anchorad`): A spetial size placeholder is reqired `[1x1]`.
29+
- `type` is required in bidder params and determines the creative format returned by Adquery.
30+
- For **banner** ads: define sizes in `mediaTypes.banner.sizes`. The adapter automatically parses and sends them.
31+
- For **video** bids: use `type: 'video'` and set `mediaTypes.video.context` to either `outstream` or `instream`.
32+
- For **video** bids, `mediaTypes.video.playerSize` is required.
33+
- For **video** (`outstream`): a renderer or equivalent outstream player integration is required (e.g. InRenderer or similar).
34+
- For **video** (`instream`): a compatible instream video player integration is required to render the returned VAST response.
35+
- For special formats (`interstitial`, `anchorad`): use the placeholder size `[[1, 1]]`.
3336

3437
### Example 1: Standard Banner Ad
3538

@@ -62,8 +65,8 @@ media_types: banner, video
6265
playerSize: [[640, 360]],
6366
mimes: ['video/mp4', 'video/webm'],
6467
protocols: [2, 3, 5, 6, 7, 8],
65-
api: [2],
66-
placement: 1,
68+
api: [2],
69+
placement: 1,
6770
startdelay: 0,
6871
skip: 1
6972
}
@@ -108,8 +111,10 @@ media_types: banner, video
108111
// Anchor / fixed bottom bar
109112
{
110113
code: 'anchor-div',
114+
mediaTypes: {
111115
banner: {
112-
sizes: [[1, 1]]
116+
sizes: [[1, 1]]
117+
}
113118
},
114119
bids: [{
115120
bidder: 'adquery',

0 commit comments

Comments
 (0)