Skip to content

Commit

Permalink
Add dev doc for Appier bidder. (#1058)
Browse files Browse the repository at this point in the history
* Add dev doc for Appier bidder.

* adding quotes around string data example
  • Loading branch information
PCMan-Appier authored and bretg committed Dec 20, 2018
1 parent fcf4ab1 commit d156ab8
Showing 1 changed file with 57 additions and 0 deletions.
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}'
}
});
});
```

0 comments on commit d156ab8

Please sign in to comment.