Dynamic Floor Pricing [Developer Preview]

circle-check

Setting a dynamic floor price allows you to establish a custom price for your ad requests. To configure a dynamic floor price, set the floorPrice property of IAAdRequest with a double value representing the custom floor price in USD, as described in the following example:

IAAdRequest *adRequest =
[IAAdRequest build:^(id  _Nonnull builder) { 
    builder.spotID = @"YOUR_SPOT_ID";    
    builder.floorPrice = @(3.14); 
}];
circle-info

Submit the floorPrice value in CPM (cost per 1000 impressions), not per single impression.

Last updated