Adagio Prebid integration (adagio/4dex-mp-prebid
)
operated by: Adagio (Onfocus SAS)
(get company information on datarequests.org)Endpoint URLs
These are URLs or regexes of endpoints the tracker sends data to. We use these to determine which adapter to apply to a request. Some trackers use the same endpoint for several formats. In this case we use additional logic to match the adapter to the request, refer to the code for more information.https://mp.4dex.io/prebid
Decoding steps
Every tracking library has its own way of transmitting tracking data, often even several. They are regularly pretty convoluted, nested encoding schemes. Because of that, the adapter needs to decode the request information into a consistent format. We try to keep keys and paths intact, but the structure results from our decoding. All steps used in the decoding for this adapter are documented here.- Parse the request body as JSON. Store that in the result for the request body.
- Get the property at JSONPath
$
in the request headers. Store that in the result for the request headers. - Get the cookie
$
. Store that in the result for the cookies. - Decode the result for the cookies at
uids
as a Base64 string. Store that in the variableuidsDecoded
. - Parse the variable
uidsDecoded
as JSON. Store that in the result for the cookies atuidsParsed
.
1res.body = parseJson(body)
2res.header = header.$
3res.cookie = cookie.$
4uidsDecoded = decodeBase64(res.cookie.uids)
5res.cookie.uidsParsed = parseJson(uidsDecoded)
Observed data transmissions
This is data that we observed being transmitted by this tracker. Not every request contains all of this data. The context of the data describes where we found the data in the request, the path describes the location of the data in the decoded request. The examples are a selection of observed values.References
- Documentation for
device.ifa
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
app.bundle
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3214---object-app- - Documentation for
app.storeurl
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3214---object-app- - Documentation for
app.name
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3214---object-app- - Documentation for
app.ver
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3214---object-app- - Documentation for
device.carrier
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.mccmnc
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
user.consent
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3220---object-user- - Documentation for
regs.gpp
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#323---object-regs- - Documentation for
device.geo.country
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3219---object-geo- - Documentation for
device.dnt
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.js
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.sua.mobile
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.language
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.geo.lat
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3219---object-geo- - Documentation for
device.geo.lon
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3219---object-geo- - Documentation for
device.make
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.model
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-model- - Documentation for
device.connectiontype
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.os
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.osv
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
app.publisher.id
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3215---object-publisher- - Documentation for
site.publisher.id
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3215---object-publisher- - Documentation for
organizationId
: https://docs.prebid.org/dev-docs/bidders/adagio.html#bid-params - Documentation for
device.ip
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
site.ref
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
device.h
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.w
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.geo.utcoffset
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3219---object-geo- - Documentation for
device.sua.browsers
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
device.ua
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3218---object-device- - Documentation for
user-agent
: https://adagio.io/privacy - Documentation for
User-Agent
: https://adagio.io/privacy - Documentation for
sec-ch-ua
: https://adagio.io/privacy - Documentation for
user.gender
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3220---object-user- - Documentation for
eids.*.uids.*.id
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3228---object-uid- - Documentation for
user.eids.*.uids.*.id
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3228---object-uid- - Documentation for
uidsParsed.uids.*.uid
: https://adagio.io/privacy - Documentation for
user.keywords
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3220---object-user- - Documentation for
site.page
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.content.title
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3216---object-content- - Documentation for
site.content.url
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3216---object-content- - Documentation for
site.cat
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.sectioncat
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.content.genre
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3216---object-content- - Documentation for
site.keywords
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.content.language
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3216---object-content- - Documentation for
site.name
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.domain
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3213---object-site- - Documentation for
site.publisher.domain
: https://github.com/InteractiveAdvertisingBureau/openrtb2.x/blob/f26fdab655ebd7302dffde9fb635ac54c69ff960/2.6.md#3215---object-publisher-