Back to Bidders

ventes

Features

Bidder Code ventes Prebid.org Member no
Media Types display GDPR TCF Support no
User IDs none USP/CCPA Support no
Supply Chain Support no COPPA Support no
Demand Chain Support no Safeframes OK check with bidder
Supports Deals check with bidder Prebid.js Adapter yes
IAB GVL ID check with bidder 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_ventes hb_bidder_ventes hb_adid_ventes
hb_size_ventes hb_source_ventes hb_format_ventes
hb_cache_host_ventes hb_cache_id_ventes hb_uuid_ventes
hb_cache_path_ventes hb_deal_ventes

BidParams

| Name | Scope | Description | Example | Type | |—————–|———-|———————————————————–|———————————————-|—————| | placementId | required | Placement ID from Ventes Avenues | 'VA-062-0013-0183' | string | | publisherId | required | Publisher ID from Ventes Avenues | 'VA-062' | string | | user | optional | Object that specifies information about an external user. | user: { age: 25, gender: 0, dnt: true} | object | | app | required | Object containing mobile app parameters. | app : { id: 'app-id'} | object | | device | required | Object containing device info mandatory for mobile devices| device : { ifa: 'device-id'} | object |

User Object

Name Description Example Type
age The age of the user. 35 integer
externalUid Specifies a string that corresponds to an external user ID for this user. '1234567890abcdefg' string
segments Specifies the segments to which the user belongs. [1, 2] Array<integer>
gender Specifies the gender of the user. Allowed values: Unknown: 0; Male: 1; Female: 2 1 integer
dnt Do not track flag. Indicates if tracking cookies should be disabled for this auction true boolean
language Two-letter ANSI code for this user’s language. EN string

Ad Unit Setup for Banner through mobile devices

var adUnits = [
{
  code: 'test-hb-ad-11111-1',
  mediaTypes: {
    banner: {  
      sizes: [
          [300, 250]
      ]
    }   
  }, 
  bids: [{
    bidder: 'ventes',
    params: {
        placementId: 'VA-062-0013-0183',
        publisherId: '5cebea3c9eea646c7b623d5e',
        IABCategories: "['IAB1', 'IAB5']",
        device:{
          ip: '123.145.167.189',
          ifa:"AEBE52E7-03EE-455A-B3C4-E57283966239",
        },
        app: {
          id: "agltb3B1Yi1pbmNyDAsSA0FwcBiJkfIUDA",
          name: "Yahoo Weather",
          bundle: 'com.kiloo.subwaysurf',
          storeurl: 'https://play.google.com/store/apps/details?id=com.kiloo.subwaysurf&hl=en',
          domain: 'somoaudience.com',
        } 
    }
  }]
 }
]

Ad Unit Setup for Banner through Websites

```javascript var adUnits = [ { code: ‘test-hb-ad-11111-1’, mediaTypes: { banner: {
sizes: [ [300, 250] ] }
}, bids: [{ bidder: ‘ventes’, params: { placementId: ‘VA-002-0007-0799’, publisherId: ‘5cebea3c9eea646c7b623d5e’, } }] } ]

Back to Bidders