-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Shinez bid adapter initial docs added (#2871)
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
--- | ||
layout: bidder | ||
title: Shinez | ||
description: Prebid Shinez Bidder Adapter | ||
biddercode: shinez | ||
media_types: banner | ||
pbjs: true | ||
--- | ||
|
||
### Registration | ||
|
||
The Shinez adapter requires setup and approval from the Shinez team. Please reach out to tech-team@shinez.io for more information. | ||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|------------|----------|----------------------|------------|----------| | ||
| `placementId` | required | A Shinez-specific identifier that is associated with a specific domain provided by your Shinez representative. | `'00654321'` | `string` | | ||
| `unit` | optional | An alphanumerical value used to identify the slot_id in reporting. | `'__header-bid-1'` | `string` | | ||
|
||
### Examples | ||
|
||
#### Example Banner Ad Unit | ||
|
||
```javascript | ||
var adUnit = { | ||
code: "test-div", | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: "shinez", | ||
params: { | ||
placementId: "00654321" | ||
} | ||
}] | ||
}; | ||
``` |