Skip to content

Latest commit

 

History

History
92 lines (83 loc) · 2.93 KB

ehealthcaresolutions.md

File metadata and controls

92 lines (83 loc) · 2.93 KB
layout title description pbjs biddercode media_types tcfeu_supported usp_supported coppa_supported gpp_sids schain_supported safeframes_ok ortb_blocking_supported dsa_supported deals_supported floors_supported sidebarType
bidder
eHealthcareSolutions
Prebid eHealthcareSolutions Bidder Adaptor
true
ehealthcaresolutions
banner, native
false
true
true
usstate_all
false
false
false
false
true
true
1

Registration

For assistance or setup instructions, please contact us at [email protected].

Banner Params

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

Name Scope Description Example Type
placement_id mandatory Placement Id 111520 number
height optional Height of the creative 250 number
width optional Width of the creative 300 number
bid_floor optional Bid Floor Price 0.5 decimal

AdUnit Format for Banner

var adUnits = [
            {
                code: 'banner-ad',
                mediaTypes: {
                    banner: {
                        sizes: [[300, 250]]
                    }
                },
                bids: [{
                    bidder: 'ehealthcaresolutions',
                    params: {
                        placement_id: 111520,
                        height: 250,
                        width: 300,
                        bid_floor: 0.5
                    }
                }]
            }
        ];

Native Params

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

Name Scope Description Example Type
placement_id mandatory Placement Id 111519 number
bid_floor optional Bid Floor Price 1 decimal

AdUnit Format for Native

var adUnits = [
            {
                code: 'native-ad-container',
                mediaTypes: {
                    native: {
                        title: { required: true, len: 100 },
                        image: { required: true, sizes: [300, 250] },
                        sponsored: { required: false },
                        clickUrl: { required: true },
                        desc: { required: true },
                        icon: { required: false, sizes: [50, 50] },
                        cta: { required: false }
                    }
                },
                bids: [{
                    bidder: 'ehealthcaresolutions',
                    params: {
                        placement_id: 111519, // Required parameter
                        bid_floor: 1 // Optional parameter
                    }   
                }]
            }
        ];