Skip to content

Commit

Permalink
AdMatic: documenting yobee alias (#5780)
Browse files Browse the repository at this point in the history
* added simple params

* update

* Update admatic.md

* update

* update

* Pixad Bid Adapter: added simple params

* AdMatic Adapter: Feature update

Pixad alias is included in the update.

* Update admatic.md

* Update pixad.md

* gvl_id add

* Update pixad.md

* admatic && pixad pbs support true

* Create monetixads.md

* new alias

* new alias

* Update adt.md

* Revert "Update adt.md"

This reverts commit c274c96.

* Revert "new alias"

This reverts commit cb15f2c.

* Create adt.md

* Update adt.md

* Update adt.md

* Update adt.md

* Update adt.md

* Update adt.md

* yobee

* Update yobee.md
  • Loading branch information
fatihkaya84 authored Dec 21, 2024
1 parent a90dbec commit 5c4e936
Show file tree
Hide file tree
Showing 7 changed files with 98 additions and 6 deletions.
2 changes: 1 addition & 1 deletion dev-docs/bidders/admatic.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
multiformat_supported: will-bid-on-any
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/admaticde.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/adt.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/monetixads.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/netaddiction.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
Expand Down
2 changes: 1 addition & 1 deletion dev-docs/bidders/pixad.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
Expand Down
92 changes: 92 additions & 0 deletions dev-docs/bidders/yobee.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
---
layout: bidder
title: Yobee
description: Prebid Yobee Bidder Adapter.
pbjs: true
pbs: true
biddercode: yobee
media_types: banner,video,native
gvl_id: 1281 (admatic)
tcfeu_supported: true
usp_supported: true
coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: all
safeframes_ok: true
floors_supported: true
aliasCode: admatic
multiformat_supported: will-bid-on-any
sidebarType: 1
---

### Description

Yobee header bidding adapter connects with Yobee demand sources to fetch bids for network ID. Please reach out to your account manager or <[email protected]> for more information.

### Bid params

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

| Name | Scope | Description | Example | Type |
|-------------|----------|-------------------------------------|----------|----------|
| `networkId` | required | The network ID from Yobee | `12345` | `number` |
| `host` | required | RTB Host | `*.rtb.yobee.it` | `string` |

### Test Parameters

300x250 banner test

```javascript
var adUnits = [{
code: 'your-slot_1-div',
mediaTypes: {
banner: { sizes: [[300, 250]] },
},
bids: [{
bidder: 'yobee',
params: {
networkId: 12345,
host: '*.rtb.yobee.it'
}
}]
},{
code: 'your-slot_2-div',
mediaTypes: {
native: { ... },
},
bids: [{
bidder: 'yobee',
params: {
networkId: 12345,
host: '*.rtb.yobee.it'
}
}]
},{
code: 'your-slot_3-div',
mediaTypes: {
video: { ... },
},
bids: [{
bidder: 'yobee',
params: {
networkId: 12345,
host: '*.rtb.yobee.it'
}
}]
}];
```

### UserSync example

```javascript
pbjs.setConfig({
userSync: {
iframeEnabled: true,
syncEnabled: true,
syncDelay: 1,
aliasSyncEnabled: true
}
});
```

0 comments on commit 5c4e936

Please sign in to comment.