Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions dev-docs/bidders/lane4.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,3 +90,30 @@ var adUnits = [
}
];
```

#### First Party Data

In release 4.30 and later, publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). The following fields are supported:

* ortb2.user.id
* ortb2.user.buyeruid
* ortb2.user.keywords
* ortb2.user.ext.*

Example first party data that's available to all bidders and all adunits:

```javascript
pbjs.setConfig({
ortb2: {
user: {
id: 123456789, // Unique pseudonymized ID for the user (e.g., NPI).
buyeruid: 987654321, // DSP-assigned user ID for identity resolution.
keywords: "kw1,kw2", // Interest or specialty tags (e.g., oncology, cardiology)
ext: {
key1: "values", // Custom healthcare metadata (e.g., icd10), single or comma seperated.
key2: "values" // Additional campaign context (e.g., ndc), single or comma seperated.
}
}
}
});
```