From c30e0cac354acd7344bc78b5baad39970e79cdc1 Mon Sep 17 00:00:00 2001 From: Fatih Kaya Date: Wed, 11 Dec 2024 22:35:31 +0300 Subject: [PATCH] AdMatic: documenting adt alias (#5714) * 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 c274c967792bb77e7c897501b70732df5acc6290. * Revert "new alias" This reverts commit cb15f2c27b28d937986d53ebaf3efeabfd5df9d3. * Create adt.md * Update adt.md * Update adt.md * Update adt.md * Update adt.md * Update adt.md --- dev-docs/bidders/adt.md | 91 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 dev-docs/bidders/adt.md diff --git a/dev-docs/bidders/adt.md b/dev-docs/bidders/adt.md new file mode 100644 index 0000000000..55d71cbfba --- /dev/null +++ b/dev-docs/bidders/adt.md @@ -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 for more information. + +### Bid params + +{: .table .table-bordered .table-striped } +| 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 + +```javascript +pbjs.setConfig({ + userSync: { + iframeEnabled: true, + syncEnabled: true, + syncDelay: 1, + aliasSyncEnabled: true + } +}); +```