Skip to content

Commit

Permalink
rubicon: updating preferred data type (prebid#2824)
Browse files Browse the repository at this point in the history
Either string or int works for client-side calls, but PBS requires integers
  • Loading branch information
bretg authored Apr 5, 2021
1 parent c705c18 commit 0dd00c0
Showing 1 changed file with 6 additions and 6 deletions.
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

0 comments on commit 0dd00c0

Please sign in to comment.