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
10 changes: 6 additions & 4 deletions dev-docs/bidders/ybidder.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,14 @@ multiformat_supported: will-bid-on-any
{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|----------------------------|--------------------------------------|-----------|
| `tagId` | required | tag ID | `"testnexx"` | `string` |
| `tagId` | required | tag ID | `"testybid"` | `string` |
| `placement` | required*| Placement | `"TEST_PLACEMENT"` | `string` |

You *must* only include one ID field - either `tagId` or `placement`, not both. If you have questions on which parameter to use, please reach out to your Account Manager.
The `tagId` and `placement` are **mutually exclusive** but at least one is required. If you pass both, `tagId` takes precedence.

Note: The Ybidder bidder adapter requires setup and approval from the Yieldbird team. Please reach out to [team@yieldbird.com](mailto:team@yieldbird.com) for more information.

### First Party Data

Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html).
Expand All @@ -58,7 +60,7 @@ var adUnits = [
bids: [{
bidder: 'ybidder',
params: {
tagId: 'testnexx'
tagId: 'testybid'
}
}]
},
Expand All @@ -74,7 +76,7 @@ var adUnits = [
bids: [{
bidder: 'ybidder',
params: {
tagId: 'testnexx'
tagId: 'testybid'
}
}]
},
Expand All @@ -97,7 +99,7 @@ var adUnits = [
bids: [{
bidder: 'ybidder',
params: {
tagId: 'testnexx'
tagId: 'testybid'
}
}]
}
Expand Down