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

Adding Aax bidder adapter doc #3696

Merged
merged 4 commits into from
May 12, 2022
Merged
Changes from 1 commit
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
75 changes: 75 additions & 0 deletions dev-docs/bidders/aax.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
layout: bidder
title: Aax
description: Prebid Media.net Bidder Adaptor
biddercode: aax
gdpr_supported: true
media_types: banner,native
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
usp_supported: true
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
prebid_member: false
pbjs: false
gvl_id: 142
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like the correct GVL ID for Aax is 720 and not 142 from the vendor list and also from the Prebid Server PR. May be a copy paste error?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mansinahar proper gvl id has been rectified

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mansinahar Hi, can you please have a look.

schain_supported: true
floors_supported: true
fpd_supported: truef
pbs: true
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|------------|----------|----------------------------------------|---------------|----------|
| `cid` | required | The customer id provided by Aax. | `'aax_test_customer'` | `string` |
| `crid` | required | The placement id provided by Aax. | `'aax_crid'` | `string` |

#### Example of Native Ad-unit
```
var adUnits = [{
code: 'div-gpt-ad-6874091242345-0',
mediaTypes: {
native: {
image: {
required: true,
sizes: [300, 250],
wmin: 50,
},
title: {
required: true,
len: 80
}
}
},
bids: [{
bidder: 'aax',
params: {
cid: 'aax_test_customer',
crid: 'aax_crid'
}
}]
}];
```

#### Example of Banner Ad-unit
```
var adUnits = [{
code: 'div-gpt-ad-6874091242345-0',
mediaTypes: {
banner: {
sizes: [
[728, 90],
[300, 600],
[300, 250]
],
}
},
bids: [{
bidder: 'aax',
params: {
cid: 'aax_test_customer',
crid: 'aax_crid'
}
}]
}];
```