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

Delta Projects Bid Adapter docs #3338

Merged
merged 2 commits into from
Oct 28, 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
54 changes: 54 additions & 0 deletions dev-docs/bidders/deltaprojects.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
layout: bidder
title: Delta Projects
description: Prebid Delta Projects Bidder Adapter
biddercode: deltaprojects
gdpr_supported: true
gvl_id: 209
media_types: banner
safeframes_ok: false
floors_supported: true
pbjs: true
---

### Note
Contact [email protected] to get a publisher id and to agree on a currency. Delta Projects
will always bid and log values in the agreed upon currency, utilizing the currency module if necessary and available.

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|----------------|----------|--------------------------------------------------------------------------|-----------------|----------|
| `publisherId` | required | Publisher ID from Delta Projects. Contact [email protected] | `'4'` | `string` |
| `currency` | optional | The bid currency agreed with Delta Projects. | `'SEK'` | `string` |
| `siteId` | optional | Site ID from Delta Projects. | `'example.com'` | `string` |
| `tagId` | optional | Identifier for specific ad placement or ad tag. | `'1234'` | `string` |
| `test` | optional | Indicate test model. Don't set anything if it is not in test mode. | `'true'` | `string` |

### Example
#### Banner
```
var adUnits = [
{
code: 'adunit-code',
mediaTypes: {
banner: {
sizes: [[300, 250]]
}
},
bids: [
{
bidder: 'deltaprojects',
params: {
publisherId: '4', // publisherId from Delta Projects.
currency: 'SEK', // the currency agreed with Delta Projects.
siteId: 'example.com', // siteId from Delta Projects.
tagId: 'tagId123', // id for ad placement or ad tag.
test: 'true', // disable test mode by remove this parameter.
}
}
]
}
];
```