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

AdMatic: documenting adt alias #5714

Merged
merged 37 commits into from
Dec 11, 2024
Merged
Changes from 33 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a7de8ee
added simple params
fatihkaya84 Oct 26, 2023
84b3617
Merge branch 'prebid:master' into master
fatihkaya84 Oct 31, 2023
6f79a91
update
fatihkaya84 Oct 31, 2023
6630a61
Update admatic.md
fatihkaya84 Oct 31, 2023
506c427
update
fatihkaya84 Oct 31, 2023
20e9585
update
fatihkaya84 Oct 31, 2023
04c394c
Pixad Bid Adapter: added simple params
fatihkaya84 Oct 31, 2023
77ba71d
Merge branch 'prebid:master' into master
fatihkaya84 Dec 8, 2023
c227ef8
AdMatic Adapter: Feature update
fatihkaya84 Dec 9, 2023
1c948f6
Merge branch 'prebid:master' into master
fatihkaya84 Jan 3, 2024
e5c7c8c
Merge branch 'prebid:master' into master
fatihkaya84 Jan 11, 2024
6bb43de
Update admatic.md
fatihkaya84 Jan 11, 2024
4ea5fbb
Update pixad.md
fatihkaya84 Jan 11, 2024
93a3393
Merge branch 'prebid:master' into master
fatihkaya84 Mar 14, 2024
d94495e
gvl_id add
fatihkaya84 Mar 14, 2024
3822332
Update pixad.md
fatihkaya84 Mar 14, 2024
b58c2dd
Merge branch 'prebid:master' into master
fatihkaya84 Mar 28, 2024
2afc35c
admatic && pixad pbs support true
fatihkaya84 Mar 28, 2024
7f2bd9a
Merge branch 'prebid:master' into master
fatihkaya84 Jun 4, 2024
ec363b0
Create monetixads.md
fatihkaya84 Jun 4, 2024
71479b9
Merge branch 'prebid:master' into master
fatihkaya84 Sep 16, 2024
72fed4e
Merge branch 'prebid:master' into master
fatihkaya84 Oct 8, 2024
75452d7
new alias
fatihkaya84 Oct 8, 2024
765c334
Merge branch 'master' into master
fatihkaya84 Oct 10, 2024
cb15f2c
new alias
fatihkaya84 Nov 15, 2024
c274c96
Update adt.md
fatihkaya84 Nov 15, 2024
2f6598b
Revert "Update adt.md"
fatihkaya84 Nov 22, 2024
dfd40d1
Revert "new alias"
fatihkaya84 Nov 22, 2024
389649f
Merge branch 'master' of https://github.com/Admatic-Sofware/prebid.gi…
fatihkaya84 Nov 22, 2024
5339c0e
Create adt.md
fatihkaya84 Nov 22, 2024
226d6ba
Update adt.md
fatihkaya84 Nov 22, 2024
8008477
Merge branch 'prebid:master' into master
fatihkaya84 Nov 23, 2024
77d9144
Merge branch 'prebid:master' into master
fatihkaya84 Dec 10, 2024
f2442a5
Update adt.md
fatihkaya84 Dec 10, 2024
9f4a917
Update adt.md
fatihkaya84 Dec 10, 2024
fa46017
Update adt.md
fatihkaya84 Dec 10, 2024
818b085
Update adt.md
fatihkaya84 Dec 10, 2024
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
91 changes: 91 additions & 0 deletions dev-docs/bidders/adt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
---
layout: bidder
title: AdTarget Teknoloji
description: Prebid AdTarget Teknoloji Bidder Adapter.
pbjs: true
pbs: true
biddercode: adt
media_types: banner,video,native
gvl_id: 779
tcfeu_supported: true
usp_supported: true
coppa_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp
schain_supported: true
dchain_supported: false
userIds: criteo, id5Id, sharedId, unifiedId
safeframes_ok: true
floors_supported: true
aliasCode: admatic
multiformat_supported: will-bid-on-any
sidebarType: 1
---

### Description

AdTarget Teknoloji header bidding adapter connects with AdTarget Teknoloji 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 }
fatihkaya84 marked this conversation as resolved.
Show resolved Hide resolved
| Name | Scope | Description | Example | Type |
|-------------|----------|-------------------------------------|----------|----------|
| `networkId` | required | The network ID from AdTarget Teknoloji | `12345` | `number` |
| `host` | required | RTB Host | `adt.rtb.adtarget.biz` | `string` |

### Test Parameters

300x250 banner test

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

## UserSync example
fatihkaya84 marked this conversation as resolved.
Show resolved Hide resolved

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