@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface CPPPricingOption

    Cost Per Point (Gross Rating Point) pricing for TV and audio campaigns. If fixed_price is present, it's fixed pricing. If absent, it's auction-based.

    interface CPPPricingOption {
        pricing_option_id: string;
        pricing_model: "cpp";
        currency: string;
        fixed_price?: number;
        floor_price?: number;
        price_guidance?: PriceGuidance;
        parameters: {
            demographic_system?: DemographicSystem;
            demographic: string;
            min_points?: number;
        };
        min_spend_per_package?: number;
        price_breakdown?: PriceBreakdown;
        eligible_adjustments?: PriceAdjustmentKind[];
    }
    Index

    Properties

    pricing_option_id: string

    Unique identifier for this pricing option within the product

    pricing_model: "cpp"

    Cost per Gross Rating Point

    currency: string

    ISO 4217 currency code

    ^[A-Z]{3}$

    fixed_price?: number

    Fixed price per rating point. If present, this is fixed pricing. If absent, auction-based.

    0

    floor_price?: number

    Minimum acceptable bid for auction pricing (mutually exclusive with fixed_price). Bids below this value will be rejected.

    0

    price_guidance?: PriceGuidance
    parameters: {
        demographic_system?: DemographicSystem;
        demographic: string;
        min_points?: number;
    }

    CPP-specific parameters for demographic targeting

    Type Declaration

    • Optionaldemographic_system?: DemographicSystem
    • demographic: string

      Target demographic code within the specified demographic_system (e.g., P18-49 for Nielsen, ABC1 Adults for BARB)

    • Optionalmin_points?: number

      Minimum GRPs/TRPs required

      0

    min_spend_per_package?: number

    Minimum spend requirement per package using this pricing option, in the specified currency

    0

    price_breakdown?: PriceBreakdown
    eligible_adjustments?: PriceAdjustmentKind[]

    Adjustment kinds applicable to this pricing option. Tells buyer agents which adjustments are available before negotiation. When absent, no adjustments are pre-declared — the buyer should check price_breakdown if present.