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

Add dev doc for Appier bidder. #1058

Merged
merged 2 commits into from
Dec 20, 2018
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
57 changes: 57 additions & 0 deletions dev-docs/bidders/appier.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
---
layout: bidder
title: Appier
description: Prebid Appier Bidder Adaptor
top_nav_section: dev_docs
nav_section: reference
biddercode: appier
biddercode_longer_than_12: false
hide: true
prebid_1_0_supported : true
media_types: banner
gdpr_supported: true
---

### Table of Contents

- [Bid Params](#appier-bid-params)
- [Custom Settings](#appier-custom-settings)


<a name="appier-bid-params" />

#### Bid Params

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

| Name | Scope | Description | Example | Type |
|-----------|----------|---------------------------|------------|----------|
| `hzid` | required | The zone ID from Appier. | `"WhM5WIOp"` | `string` |


<a name="appier-custom-settings" />

#### Custom Settings (Optional)

Set the "farm" to use region-specific server
```
pbjs.que.push(function() {
// use the bid server in Taiwan (country code: tw)
pbjs.setConfig({
appier: {
'farm': 'tw'
}
});
});
```

Explicitly override the bid server used for bidding
```
pbjs.que.push(function() {
pbjs.setConfig({
appier: {
'server': '${HOST_NAME_OF_THE_SERVER}'
}
});
});
```