Skip to content
14 changes: 9 additions & 5 deletions dev-docs/bidders/adquery.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,13 @@ media_types: banner, video
**Notes:**

- `placementId` is always required and should correspond to a placement configured in the Adquery dashboard for the specific `type`.
- `type` is mandatory in bidder params — it determines the creative format (banner, video, interstitial, anchorad).
- For **banner** ads: Define sizes in `mediaTypes.banner.sizes`. The adapter automatically parses and sends them.
- 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.
- 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.
- For special formats (`interstitial`, `anchorad`): A spetial size placeholder is reqired `[1x1]`.
- `type` is required in bidder params and determines the creative format returned by Adquery.
- For **banner** ads: define sizes in `mediaTypes.banner.sizes`. The adapter automatically parses and sends them.
- For **video** bids: use `type: 'video'` and set `mediaTypes.video.context` to either `outstream` or `instream`.
- For **video** bids, `mediaTypes.video.playerSize` is required.
- For **video** (`outstream`): a renderer or equivalent outstream player integration is required (e.g. InRenderer or similar).
- For **video** (`instream`): a compatible instream video player integration is required to render the returned VAST response.
- For special formats (`interstitial`, `anchorad`): use the placeholder size `[[1, 1]]`.

### Example 1: Standard Banner Ad

Expand Down Expand Up @@ -108,8 +110,10 @@ media_types: banner, video
// Anchor / fixed bottom bar
{
code: 'anchor-div',
mediaTypes: {
banner: {
sizes: [[1, 1]]
}
},
bids: [{
bidder: 'adquery',
Expand Down
Loading