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.
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',
}
},
};
{"auctionForcedPrice":{"cpm":100,"currency":"USD"}}
{"auctionFixedPrice":{"cpm":5,"currency":"EUR"}}
{"sspFixedPrice":{"criteo":{"cpm":3,"currency":"EUR"}}
{"formatRestriction":{"appnexus":["audio","video"]}}
{"sspAdjustment":{"criteo":0.8}}
{"dealidAdjustment":{"testdealid":0.9}}
{"dealidFixedPrice":{"testdealid":{"cpm":3,"currency":"EUR"}}}
{"sspFloorPrice":{"criteo":{"cpm":3,"currency":"EUR"}}