Skip to content
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
106 changes: 106 additions & 0 deletions dev-docs/bidders/tadvertising.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
---
layout: bidder
title: T-Advertising Solutions
description: T-Advertising Solutions Prebid Bidder Adapter
biddercode: tadvertising
tcfeu_supported: true
gvl_id: 213
usp_supported: false
coppa_supported: false
gpp_supported: false
schain_supported: true
dchain_supported: false
userIds: unifiedId
media_types: banner, video
floors_supported: true
pbjs: true
pbs: false
prebid_member: no
sidebarType: 1
pbs_app_supported: false
deals_supported: false
multiformat_supported: will-not-bid
ortb_blocking_supported: true
gpp_sids: false
fpd_supported: false
---

### Disclosure
Comment thread
tb-emq marked this conversation as resolved.

{: .alert.alert-danger :}
Note: The T-Advertising Solutions Bidding adapter requires setup and approval from the T-Advertising Solutions service team. Please reach out to your account manager for more information to start using it.

### Bid Params

{: .table .table-bordered .table-striped }
Comment thread
tb-emq marked this conversation as resolved.

Name | Scope | Description | Example | Type
--- | --- | --- | --- | ----
`publisherId` | required | The publisher ID | `'1427ab10f2e448057ed3b422'` | `String`
`placementId` | required | the GPID value should be passed in this field. | `'5e9f2c8b7d31a45620fa8d3c'` | `String`
`bidfloor` | optional | Sets a bid floor price | `0.95` | `Float`

### Banner Ad Unit Example

The T-Advertising Solutions adapter for banner uses certain parameters in the AdUnit's
[mediaTypes.banner](https://docs.prebid.org/dev-docs/adunit-reference.html#adUnit.mediaTypes.banner) definition.

Here's a banner ad unit example:

```javascript
var bannerAdUnit = {
code: 'myBannerAdUnit',
mediaTypes: {
banner: {
sizes: [400, 600],
}
},
bids: [
{
bidder: 'tadvertising',
params: {
publisherId: '1427ab10f2e448057ed3b422',
placementId: 'sidebar_1',
bidfloor: 0.95 // Optional - default is 0
}
}
]
}
```

### Video Ad Unit Example

The T-Advertising Solutions adapter for video requires certain parameters in the AdUnit's
[mediaTypes.video](/dev-docs/adunit-reference.html#adUnit.mediaTypes.video) definition.

Here's a video ad unit example:

```javascript
var videoAdUnit = {
code: 'myVideoAdUnit',
mediaTypes: {
video: {
mimes: ['video/mp4'],
minduration: 1,
maxduration: 60,
api: [1, 3],
placement: 3,
protocols: [2,3,5,6]
}
},
bids: [
{
bidder: "tadvertising",
params: {
publisherId: '1427ab10f2e448057ed3b422',
placementId: 'sidebar_1',
bidfloor: 0.95 // Optional - default is 0
}
}
]
}
```

### First Party Data
Comment thread
tb-emq marked this conversation as resolved.

Publishers should use the `ortb2` method of setting [First Party Data](/features/firstPartyData.html).