Back to Bidders

Delta Projects

Features

Bidder Code deltaprojects Prebid.org Member no
Media Types display GDPR TCF Support yes
User IDs none USP/CCPA Support no
Supply Chain Support no COPPA Support no
Demand Chain Support no Safeframes OK no
Supports Deals check with bidder Prebid.js Adapter yes
IAB GVL ID 209 Prebid Server Adapter no
Floors Module Support yes 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_deltaprojects hb_bidder_deltaproje hb_adid_deltaproject
hb_size_deltaproject hb_source_deltaproje hb_format_deltaproje
hb_cache_host_deltap hb_cache_id_deltapro hb_uuid_deltaproject
hb_cache_path_deltap hb_deal_deltaproject

Note

Contact publishers@deltaprojects.com to get a publisher id and to agree on a currency. Delta Projects will always bid and log values in the agreed upon currency, utilizing the currency module if necessary and available.

Bid Params

Name Scope Description Example Type
publisherId required Publisher ID from Delta Projects. Contact publishers@deltaprojects.com '4' string
currency optional The bid currency agreed with Delta Projects. 'SEK' string
siteId optional Site ID from Delta Projects. 'example.com' string
tagId optional Identifier for specific ad placement or ad tag. '1234' string
test optional Indicate test model. Don’t set anything if it is not in test mode. 'true' string

Example

var adUnits = [
  {
    code: 'adunit-code',
    mediaTypes: {
      banner: {
        sizes: [[300, 250]]
      }
    },
    bids: [
      {
          bidder: 'deltaprojects',
          params: {
              publisherId: '4',             // publisherId from Delta Projects.
              currency: 'SEK',              // the currency agreed with Delta Projects.
              siteId: 'example.com',        // siteId from Delta Projects.
              tagId: 'tagId123',            // id for ad placement or ad tag. 
              test: 'true',                 // disable test mode by remove this parameter.
          }
      }
    ]
  }
];

Back to Bidders