Install Instructions: GrowthCode RTD Prebid SubModule

The GrowthCode real-time data module in Prebid allows publishers to maximize the value of their first-party audiences and contextual data. By using GrowthCode's integrated cookieless identity, this module provides real-time capabilities for segmenting audiences based on context (using IAB Taxonomy 2.2, cattax: 6). It also offers HEMs (Header Enrichment Modules) that can smoothly integrate with your existing Prebid setup, making it simple to optimize your advertising strategies.Prebid Docs: https://docs.prebid.org/dev-docs/modules/growthCodeRtdProvider.html

PreBid SubModule Requirements

  • Prebid <= Version 7.52.0

  • GrowthCode HEM Resolution Sync Installed

Building Prebid with GrowthCode Support

Compile the GrowthCode RTD module into your Prebid build:

gulp serve --modules=userId,rtdModule,growthCodeRtdProvider,<Any other Bid Adapters>

Code in you Prebid Config

pbjs.setConfig(
    ...
    realTimeData: {
         auctionDelay: 80,
          dataProviders: [
          {
            name: 'growthCodeRtd',
            waitForIt: false,
            params: {
              pid: 'PARTNER_ID',
            }
          }
       ]
    }
    ...
}

Pre Bid SumModule Parameters

Parameter

Description

Description

name

The name of the adapter (‘growthCodeRtd’)

required

waitForIt

Required to ensure that the auction is delayed until prefetch is complete

Optional. Defaults to false

params

Partner ID (Provided by GrowthCode)

required

params.url

Alternatnert Endpoint

optional

Last updated