Skip to content

Files

Latest commit

 

History

History
61 lines (55 loc) · 1.57 KB

anyclip.md

File metadata and controls

61 lines (55 loc) · 1.57 KB
layout title description biddercode tcfeu_supported usp_supported coppa_supported gpp_sids schain_supported dchain_supported userId media_types floors_supported fpd_supported pbjs pbs prebid_member multiformat_supported ortb_blocking_supported privacy_sandbox safeframes_ok sidebarType
bidder
AnyClip
AnyClip Bidder Adapter
anyclip
false
true
true
usp
true
false
pubProvidedId, unifiedId
banner
true
false
true
false
false
will-not-bid
true
false
true
1

Note

For more information about AnyClip, please contact support@anyclip.com.

Bid Params

{: .table .table-bordered .table-striped }

Name Scope Description Example Type
publisherId required Publisher ID '12345' string
supplyTagId required Supply Tag ID '-mptNo0BycUG4oCDgGrU' string
floor optional Floor Price 0.5 float

Sample Banner only Ad Unit

var adUnits = [{
    code: 'adunit1', // ad slot HTML element ID  
    mediaTypes: {
        banner: {
            sizes: [
                [300, 250],
                [728, 90]
            ]
        }
    },
    bids: [{
        bidder: 'anyclip',
        params: {
            publisherId: '12345', // required, string
            supplyTagId: '-mptNo0BycUG4oCDgGrU', // required, string
            floor: 0.5 // optional, floor
        }
    }]
}]