Real Time Data (RTD) module

circle-exclamation
circle-info

This module has been introduced for Prebid 9+ which prevented our legacy data retrieval method

1

Add the RTD module and RTD Provider

Two methods:

chevron-right(Advanced) Add the modules in your Prebid Build commandshashtag
gulp build --modules=adagioBidAdapter,rtdModule,adagioRtdProvider
// + your additional modules 
chevron-rightUse Prebid Downloadarrow-up-right pagehashtag

Available from Prebid 9

2

Configure the Adagio RTD Provider parameters

Once built, the Adagio RTD Provider should be configured with the following parameters: organizationId and site .

pbjs.que.push(function () {
  pbjs.setConfig({
    realTimeData: {
      dataProviders: [
        {
          name: "adagio",
          params: {
            organizationId: "1000", // Required
            site: "my-site",        // Required
          },
        },
      ],
    },
  });
});

Last updated

Was this helpful?