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

AJA Bid Adapter: User ID Module Support #3223

Merged
merged 2 commits into from
Aug 26, 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
22 changes: 11 additions & 11 deletions dev-docs/bidders/aja.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,23 @@
layout: bidder
title: AJA
description: Prebid AJA Bidder Adaptor
userIds: criteo, unifiedId, imuid
pbjs: true
pbs: true
biddercode: aja
media_types: video, native
---

### Note:
### Note

The AJA Bidding adaptor requires setup and approval before beginning. Please reach out to <[email protected]> for more details

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
| Name | Scope | Description | Example | Type |
|-------|----------|---------------------|------------|----------|
| `asi` | required | ad spot hash code | `'123abc'` | `string` |
| `asi` | required | ad spot hash code | `'123abc'` | `string` |

### Configuration

Expand All @@ -30,11 +31,11 @@ pbjs.setConfig({
userSync: {
filterSettings: {
iframe: {
bidders: '*', // '*' represents all bidders
filter: 'include'
}
}
}
bidders: "*", // '*' represents all bidders
filter: "include",
},
},
},
});
```

Expand All @@ -44,8 +45,7 @@ For Prebid.js v1.14.0 and before:
pbjs.setConfig({
userSync: {
iframeEnabled: true,
enabledBidders: ['aja']
}
enabledBidders: ["aja"],
},
});
```