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: 5 additions & 5 deletions dev-docs/bidders/welect.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,16 @@ sidebarType: 1
---

### Note

The Welect bidder adapter requires setup and approval from the Welect team. Please reach out to [dev@welect.de](mailto:dev@welect.de) for more information.

### Bid params

{: .table .table-bordered .table-striped }

| Name | Description | Example | Type |
|---|---|---|---|
| `placementId` | an identifier for your placement, provided by Welect | `'exampleID'` | `string` |
| `domain` | The domain of your placement | `'www.example.com'` | `string` |

### Example Ad Unit Setup

Expand All @@ -41,13 +42,12 @@ var adUnits = [
{
bidder: 'welect',
params: {
placementId: 'exampleId',
domain: 'www.welect.de'
placementId: 'exampleId'
},
sizes: [[640, 360]],
mediaTypes: {
video: {
context: 'instream'
context: 'instream',
playerSize: [640, 360]
}
},
};
Expand Down