User Object¶
Note
Fields marked with asterisk (*) are optional.
Value |
Type |
Description |
---|---|---|
id* |
string |
Unique The MediaGrid ID of this user, for example,
|
buyeruid* |
string |
The Buyer user ID as mapped by The MediaGrid for the DSP. The User ID can be
a maximum of |
consent* |
string |
Passes the Transparency & Consent Framework string. The current valid version of this string is v2.0. You can read more about the the information encoded within the consent string here: Transparency and Consent String with Global Vendor & CMP List Formats The Buyer should use the information in the consent string to ascertain which vendors and for which purposes the user gave consent.
For more information see the following links: |
customdata* |
string |
Optional feature to pass bidder data that was set in the exchange’s cookie. The string must be in base85 cookie safecharacters and be in any format. Proper JSON encoding must be used to include “escaped” quotation marks. |
eids* |
array of objects |
Contains the Extended identifiers object, see the Extended Identifiers section for details |
keywords* |
string |
A comma separated list of keywords about the App,
e.g |
kwarray* |
array of string |
An array of keywords about the App, e.g |
yob* |
integer |
Year of birth as a 4-digit integer, for example, Deprecated since version 5.3. |
gender* |
string |
Specifies the user gender. Deprecated since version 5.3. |
data* |
array of objects |
Additional data. Each data object represents a different data source, for more information, see the Data Object section. |
ext* |
object |
For more information, see the User Ext Object Properties section. |
Extended Identifiers¶
Supports the official Open RTB community extension for passing multiple third party user identifiers, see the official Extended Identifiers spec for more details.
This object passes any additional User IDs a Supplier, Consent Management Platform (CMP), Data Management Platform (DMP), or The MediaGrid may have for a user. There is a number of identity solutions that provide IDs for users that are not based on 3rd party data, and many of these solution providers extend their first-party data as offerings that can be used to offset the decline of 3rd party cookies.
The MediaGrid and many of our partners support these offerings and have build systems to
collate, map, and make these IDs available to Buyers, who can use them to improve
the robustness of targeted advertising. When the appropriate consent is in place (e.g
CCPA, GDPR) The MediaGrid passes all and any correctly set ID in this field. The following
IDs are the most commonly sent through The MediaGrid, but if you are looking for a particular
ID in requests, you should check the source
value to identify it. You can find a
more extensive list of possible IDs on the
Prebid User ID Module page
The TradeDesk ID known as the Unified ID 2.0 and passed as
"uidapi.com"
, is based on a Single-Sign On (SSO) email validation service for publisher site access.The TradeDesk ID known as the Unified ID 1.0 and passed as
"adserver.org"
.You can read more about that here https://www.thetradedesk.com/us/about-us/industry-initiatives/unified-id-solution-2-0/unified-id-solution-1-0The LiveIntent ID, passed as
"liveintent.com"
, is built and authenticated daily through consent-based email, you can read more about here https://www.liveintent.com/identity-solutions/The ID5 ID, passed as
"id5-sync.com"
, enables publishers to create and distribute a shared first-party identifier, you can read more about that here https://www.id5.io/The prebid managed SharedID, passed using
"sharedid.org"
, see https://prebid.org/product-suite/sharedid/ for more detailsFederated Learning of Cohorts FloC IDs may be passed in this field when coming from an Supplier using prebid, with the source given as
"chrome.com"
.The Intimate Merger ID is commonly used in the Japanese marketplace, with the source passed as
intimatemerger.com
.The LiveRamp ID, passed as
"liveramp.com"
, associates anonymous device IDs and other online customer IDs from publishers, platforms, or data providers with an IdentityLink (IDL) single person-based identifier. You can read more about it here https://liveramp.com/our-platform/identity-resolution/
Note
The LiveRamp ID is encrypted and only enabled for certain Buyers that have the business contracts in place to decrypt and use this ID, contact support@bidswitch.com if you are a LiveRamp partner.
The LiveIntent ID is only available to certain Buyers to whom LiveIntent wish to grant usage rights.
Value |
Type |
Description |
---|---|---|
source |
string |
(Required) Source or technology provider responsible for the set of included IDs. Expressed as a top-level domain. The MediaGrid includes the following IDs when available.
|
uids |
array of objects |
(Required) Passes the User IDs matched from the given provider. |
uids Object¶
Value |
Type |
Description |
---|---|---|
id |
string |
(Required) The User ID with this provider. |
atype |
int |
(Optional) The type of user agent the match is from.
|
User Object Example¶
{
"user":{
"id":"45asdf987656789adfad4678rew656789",
"buyeruid":"1234567890",
"keywords":"sports, entertainment",
"consent":"Y29uc2VudCBkYXRh",
"eids":[
{
"source":"adserver.org",
"uids":[
{
"id":"zzz123",
"atype":1
},
{
"id":"DB700403-9A24-4A4B-A8D5-8A0B4BE777D2",
"atype":2
}
]
},
{
"source":"liveintent.com",
"uids":[
{
"id":"IPl4zj44RhezVyNE83bYfogYRN6W8LaCy3USy8dPQ==",
"atype":3
}
]
},
{
"source":"liveramp.com",
"uids":[
{
"id":"0db20294a3908612bc7e732c2022095391074cf3"
}
]
}
]
}
}