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

Allox Bid Adapter docs #5856

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
65 changes: 65 additions & 0 deletions dev-docs/bidders/allox.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
layout: bidder
title: Allox
description: Prebid Allox Bidder Adaptor
pbjs: true
biddercode: allox
media_types: banner
userIds: none
floors_supported: true
tcfeu_supported: false
dsa_supported: false
usp_supported: false
gpp_supported: false
gpp_sids: none
coppa_supported: false
gvl_id: none
deals_supported: false
schain_supported: false
dchain_supported: false
safeframes_ok: false
multiformat_supported: false
ortb_blocking_supported: false
prebid_member: false
privacy_sandbox: none
sidebarType: 1
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------------------|----------|----------|
| `placementId` | required | Ad placement ID provided by Allox | `'1234'` | `string` |

### Registration

The Allox bidding adapter requires setup and approval before use. Please contact <[email protected]> for more details.

### Modules to include in your build process

When running the build command, include `alloxBidAdapter` as a module, as well as `alloxAnalyticsAdapter`.

If a JSON file is being used to specify the bidder modules, add `"alloxBidAdapter"`
to the top-level array in that file.

```json
[
"alloxBidAdapter",
"alloxAnalyticsAdapter",
"fooBidAdapter",
"bazBidAdapter"
]
```

### Configuration

Access to local storage is required for Allox's Prebid adapter. Ensure that local storage access is enabled; otherwise, the adapter may not function properly.

```js
pbjs.bidderSettings = {
allox: {
storageAllowed: true
}
};
```