Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

E-Planning SSP can be implemented through Prebid Server and compete as any source within it.

...

How to Get the ci Parameter

To obtain the ci value for your account, access the platform with your ID and then follow these steps:

  1. Click on Implementation
  2. Click on the Implementation for display chart
  3. Select Prebid
  4. Copy the displayed value

...

Code Block
languagejs
var pbjs = pbjs || {};

pbjs.que = pbjs.que || [];

pbjs.que.push(function() {

    pbjs.setConfig({
        s2sConfig: {
            accountId: '1',
            enabled: true,
            bidders: ['eplanning'],
            timeout: 1000,
            adapter: 'prebidServer',
            endpoint: 'https://prebid.adnxs.com/pbs/v1/openrtb2/auction',
            syncEndpoint: 'https://prebid.adnxs.com/pbs/v1/cookie_sync'
        }
    });

    var adUnits = [{
        code: '/19968336/header-bid-tag-1',
        sizes: sizes,
        bids: [
			{
				bidder: 'eplanning',
				params: { ci: '18f66' }
			}
        ]
    }];
});

In-App integration

You can send mobile app traffic (both for iOS and Android) through a Prebid Server integration. No additional configuration is required beyond the ci value, however have in mind that the following values should be properly configured for your app in Prebid Server as those are required in the auction:

  • app.id
  • app.name
  • app.domain (developer domain for app-ads.txt validation)
  • app.bundle
  • device.ua
  • device.ip
  • device.ifa

Creation of the Inventory

The corresponding inventory is automatically generated in our platform. Once implementation has completed and E-Planning starts receiving traffic, you will find your sites and spaces within the platform. The platform automatically creates a space for each size received. Given this, if your site is example.com, you will get a taxonomy of this type:

example.com

  • 300x250
  • 728x90
  • 160x600

For the site name, by default the top order domain will be taken. In other words, if your site is subdomain.example.com, it will be identified with example.com. If you want to use a sub-domain or a custom domain, set it up using the site.domain parameter in the request. You can set this value in your Prebid configuration or via a Stored Request.

Additional Docs

We recommend the following external links for further reference on Prebid Server:

...