| layout | page_v2 |
|---|---|
| page_type | module |
| title | Module - Bid Viewability - GAM |
| description | Triggers a 'bidViewable' event when a rendered bid is viewable according to Active View criteria |
| module_code | bidViewability |
| display_name | Bid Viewability - GAM |
| enable_download | true |
| vendor_specific | true |
| sidebarType | 1 |
{:.no_toc}
- TOC {:toc}
This optional module will trigger a bidViewable event which can be consumed by Analytics adapters. In addition, the winning bidder can implement an onBidViewable method to capture this event.
Notes:
- The module does not work with adservers other than GAM and only with GPT integration. See the other Bid Viewable Event module for an ad server independent version.
- The GPT API is used to find when a bid is viewable. See GPT documentation for more details.
- This event is fired when an impression becomes viewable, according to Active View criteria.
- When a rendered PBJS bid is viewable the module will trigger BID_VIEWABLE event, which can be consumed by the winning bidder and analytics adapters
- The module works with Banner, Outsteam and Native creatives
Instead of listening for events, bidders may supply a bid.vurls array and this module may fire those pixels when the viewability signal is received. Publishers can control this with module config firePixels: true. Please note that GDPR and USP related parameters will be added to the given URLs.
{: .alert.alert-warning :} This feature doesn't work with Instream Video, as GPT's impressionViewable event is not triggered for instream-video-creative
The default logic used to find a matching Prebid.js bid for a GPT slot is
(bid, slot) => (slot.getAdUnitPath() === bid.adUnitCode ||
slot.getSlotElementId() === bid.adUnitCode){: .table .table-bordered .table-striped }
| Field | Scope | Type | Description |
|----------+---------+--------+-----------------------------------------|
| bidViewability | Required | Object | Configuration object |
| bidViewability.enabled | Required | Boolean | when set to true, the module will emit BID_VIEWABLE when applicable. Default: false |
| bidViewability.firePixels | Optional | Boolean | when set to true, will fire the urls mentioned in bid.vurls which should be array of URLs. Default: false |
| bidViewability.customMatchFunction | Optional | function(bid, slot) | REMOVED in 11.0; use customGptSlotMatching instead. This function will be used to find the matching winning bid for the GPT slot. See above for the default. |
pbjs.setConfig({
bidViewability: {
enabled: true,
firePixels: true
}
}); pbjs.onEvent('bidViewable', function(bid){
console.log('got bid details in bidViewable event', bid);
});