Skip to content

Commit

Permalink
Shinez bid adapter initial docs added (#2871)
Browse files Browse the repository at this point in the history
  • Loading branch information
Soterix authored Apr 22, 2021
1 parent 1bb10db commit c68a97b
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions dev-docs/bidders/shinez.md
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"
}
}]
};
```

0 comments on commit c68a97b

Please sign in to comment.