Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rubicon: updating preferred data type #2824

Merged
merged 1 commit into from
Apr 5, 2021
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
12 changes: 6 additions & 6 deletions dev-docs/bidders/rubicon.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ For both Prebid.js and Prebid Server, the Rubicon Project adapter requires setup
{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|-------------|---------|--------------------|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|------------------|
| `accountId` | required | The publisher account ID | `'4934'` | `string` |
| `siteId` | required | The site ID | `'13945'` | `string` |
| `zoneId` | required | The zone ID | `'23948'` | `string` |
| `accountId` | required | The publisher account ID | `4934` | `integer` |
| `siteId` | required | The site ID | `13945` | `integer` |
| `zoneId` | required | The zone ID | `23948` | `integer` |
| `sizes` | optional | Array of Rubicon Project size IDs. If not specified, the system will try to convert from the AdUnit's mediaTypes.banner.sizes. | `[15]` | `Array<integer>` |
| `position` | optional | Set the page position. Valid values are "atf" and "btf". | `'atf'` | `string` |
| `userId` | optional | Site-specific user ID may be reflected back in creatives for analysis. Note that userId needs to be the same for all slots. | `'12345abc'` | `string` |
Expand Down Expand Up @@ -79,9 +79,9 @@ var videoAdUnit = {
bids: [{
bidder: 'rubicon', // replace bidders
params: {
accountId: '7780', // and params
siteId: '87184',
zoneId: '413290',
accountId: 7780, // and params
siteId: 87184,
zoneId: 413290,
video: {
language: 'en'
}
Expand Down