Adtarget
Features
| Bidder Code | adtarget | Prebid.org Member | no | 
|---|---|---|---|
| Media Types | display, video | GDPR TCF Support | yes | 
| User IDs | britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId | USP/CCPA Support | yes | 
| Supply Chain Support | yes | COPPA Support | yes | 
| Demand Chain Support | no | Safeframes OK | check with bidder | 
| Supports Deals | check with bidder | Prebid.js Adapter | yes | 
| IAB GVL ID | check with bidder | Prebid Server Adapter | yes | 
| Floors Module Support | no | First Party Data Support | check with bidder | 
| Multi Format Support | check with bidder | ORTB Blocking Support | check with bidder | 
"Send All Bids" Ad Server Keys
These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.| hb_pb_adtarget | hb_bidder_adtarget | hb_adid_adtarget | 
| hb_size_adtarget | hb_source_adtarget | hb_format_adtarget | 
| hb_cache_host_adtarg | hb_cache_id_adtarget | hb_uuid_adtarget | 
| hb_cache_path_adtarg | hb_deal_adtarget | 
Registration
To use the Adtarget bidder you will need an aid from an exchange account on https://adtarget.com.tr. For further information, please contact kamil@adtarget.com.tr.
Bid params
| Name | Scope | Description | Example | Type | 
|---|---|---|---|---|
| aid | required | The source ID from Adtarget platform. | 529814 | integer | 
Description
Provides a solution for accessing Video demand and display demand from Adtarget
Test Parameters
    var adUnits = [
      // Video adUnit
      {
        code: 'videoPlayer',
        mediaTypes: {
          video: {
            playerSize:[640,480]
            context: 'instream'
          }
        },
        bids: [{
          bidder: 'adtarget',
          params: {
            aid: 331133
          }
        }]
      },
      // Banner adUnit
      {
        code: 'bannerAd',
        mediaTypes: {
          banner: {
            sizes: [[300, 250]]
          }
        },
        bids: [{
          bidder: 'adtarget',
          params: {
            aid: 529814
          }
        }]
      }
    ];
Additional Configuration
It is possible to configure requests to be splitted in chunks to have less bid requests in single http request (default value is 10)
    pbjs.setBidderConfig({
        config: {              
            adtarget: {
                chunkSize: 1   // makes 1 http request per 1 adunit configured
            }
        }
    });