Extra Feature module
Should you require a specific configuration for your tagId, you can utilize the Extra Feature module.
The feature is accessible at the tagID level via the "Extra Feature" box. Once selected, you can input your code.
The following options are available:
export type ExtraFeatures = {
auctionForcedPrice?: {
cpm: number,
currency: 'EUR' | 'USD',
},
auctionFixedPrice?: {
cpm: number
currency: 'EUR' | 'USD',
},
sspFixedPrice?: {
[K in SspList]?: {
cpm: number
currency: 'EUR' | 'USD',
}
},
formatRestriction?: {
[K in SspList]?: Mediatype[]
},
stailaPmtRule?: boolean,
sspAdjustment?: {
[K in SspList]?: number
},
dealidAdjustment?: Record<string, number>,
dealidFixedPrice?: Record<string, {
cpm: number,
currency: 'EUR' | 'USD',
}>,
videoPlcmtOverride?: number,
sspFloorPrice?: {
[K in SspList]?: {
cpm: number,
currency: 'EUR' | 'USD',
}
},
};
Here are some examples of how to use the code in this field:
{"auctionForcedPrice":{"cpm":100,"currency":"USD"}}
{"auctionFixedPrice":{"cpm":5,"currency":"EUR"}}
{"sspFixedPrice":{"criteo":{"cpm":3,"currency":"EUR"}}}
{"formatRestriction":{"appnexus":["audio","video"]}}
{"stailaPmtRule":true}
{"sspAdjustment":{"criteo":0.8}}
{"dealidAdjustment":{"testdealid":0.9}}
{"dealidFixedPrice":{"testdealid":{"cpm":3,"currency":"EUR"}}}
{"videoPlcmtOverride":1}
{"sspFloorPrice":{"criteo":{"cpm":3,"currency":"EUR"}}}
Last updated
Was this helpful?