Multiformat bids

Nexx360 allows publishers to bid on the same format with different bidders calling different IDs.

{
    code: 'div-1',
    mediaTypes: {
        banner: {
            sizes: [[300,250], [300,600]]
        },
        video: {
            context: 'outstream',
            playerSize: [640, 480],
            mimes: ['video/mp4'],
            protocols: [1, 2, 3, 4, 5, 6, 7, 8],
            playbackmethod: [2],
            skip: 1,
        },
        native: { // Since prebid v7.40
            title: {
                required: true
            },
            image: {
                required: true
            },
            sponsoredBy: {
                required: true
            }
        }
    },
    bids: [{
        bidder: 'nexx360',
        params: {
            allBids: true,
            tagId: 'luvxjvgn',
            videoTagId: 'yqsc1tfj', // Those ids will be called for video
            nativeTagId: 'zealpeaz', // Those ids will be called for native
        }
    }],
                    
}

Last updated