PubWise
Features
| Bidder Code | pwbid | Prebid.org Member | yes | 
|---|---|---|---|
| Media Types | display, native | GDPR TCF Support | yes | 
| User IDs | britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, pubProvidedId, sharedId, unifiedId | USP/CCPA Support | yes | 
| Supply Chain Support | yes | COPPA Support | no | 
| Demand Chain Support | no | Safeframes OK | check with bidder | 
| Supports Deals | check with bidder | Prebid.js Adapter | yes | 
| IAB GVL ID | 842 | Prebid Server Adapter | no | 
| Floors Module Support | no | First Party Data Support | check with bidder | 
| Multi Format Support | check with bidder | ORTB Blocking Support | check with bidder | 
"Send All Bids" Ad Server Keys
These are the bidder-specific keys that would be targeted within GAM in a Send-All-Bids scenario. GAM truncates keys to 20 characters.| hb_pb_pwbid | hb_bidder_pwbid | hb_adid_pwbid | 
| hb_size_pwbid | hb_source_pwbid | hb_format_pwbid | 
| hb_cache_host_pwbid | hb_cache_id_pwbid | hb_uuid_pwbid | 
| hb_cache_path_pwbid | hb_deal_pwbid | 
Note:
The PubWise bid adapter requires approval. Visit http://www.PubWise.io/ to get started.
Bid params
| Name | Scope | Description | Example | Type | 
|---|---|---|---|---|
| siteId | required | The site ID provided by the PubWise system | 'XXXXXX' | string | 
| bidFloor | optional | Value to pass as the bidfloor for this bid | 2.50 | currency | 
| isTest | optional | A boolean to indicate 100% fill test placement request | false | boolean | 
Example
Banner
var adUnits = [
    {
        code: "div-gpt-ad-1460505748561-0",
        mediaTypes: {
        banner: {
            sizes: [[300, 250]]
        }
        },
        bids: [{
            bidder: 'pwbid',
            params: {
                siteId: "xxxxxx",
                isTest: true
            }
        }]
    }
]
Native
var adUnits = [
    {
        code: 'div-gpt-ad-1460505748561-1',
        sizes: [[1, 1]],
        mediaTypes: {
            native: {
                title: {
                    required: true,
                    len: 80
                },
                body: {
                    required: true
                },
                image: {
                    required: true,
                    sizes: [150, 50]
                },
                sponsoredBy: {
                    required: true
                },
                icon: {
                    required: false
                }
            }
        },
        bids: [{
            bidder: 'pwbid',
            params: {
                siteId: "xxxxxx",
                isTest: true,
            },
        }]
    }
]