Skip to content
Open
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
34 changes: 17 additions & 17 deletions dev-docs/bidders/trafficgate.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ pbs: true
pbjs: true
biddercode: trafficgate
media_types: banner, video
tcfeu_supported: false
gvl_id: 1272
tcfeu_supported: true
pbs_app_supported: true
multiformat_supported: will-bid-on-any
usp_supported: true
Expand All @@ -22,13 +23,13 @@ ortb_blocking_supported: true
safeframes_ok: true
---

### Note
## Note

{% include dev-docs/pbjs-adapter-required-for-pbs.md %}

The TrafficGate Bidding adapter requires setup before beginning. Please contact us at <support@bidscube.com>

### Bid Params
## Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
Expand All @@ -37,7 +38,7 @@ The TrafficGate Bidding adapter requires setup before beginning. Please contact
| `host` | required | Host | `'example'` | `string` |
| `customFloor` | optional | Custom Bid Floor | `2.55` | `number` |

### AdUnit Format for Banner
## AdUnit Format for Banner

```javascript
var adUnits = [{
Expand All @@ -57,32 +58,31 @@ var adUnits = [{
}];
```

#### Video
### Video

#### mediaTypes.video
### mediaTypes.video

The following video parameters are supported here so publishers may fully declare their video inventory:

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|----------------|--------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------|-----------|
| context | required | instream or outstream |"outstream" | string |
| playerSize| required | width, height of the player in pixels | [640,360] - will be translated to w and h in bid request | array<integers> |
| mimes | required | List of content MIME types supported by the player (see openRTB v2.5 for options) | ["video/mp4"]| array<string>|
| protocols | recommended | Supported video bid response protocol values <br />1: VAST 1.0 <br />2: VAST 2.0 <br />3: VAST 3.0 <br />4: VAST 1.0 Wrapper <br />5: VAST 2.0 Wrapper <br />6: VAST 3.0 Wrapper <br />7: VAST 4.0 <br />8: VAST 4.0 Wrapper | [2,3,5,6] | array<integers>|
| api | recommended | Supported API framework values: <br />1: VPAID 1.0 <br />2: VPAID 2.0 <br />3: MRAID-1 <br />4: ORMMA <br />5: MRAID-2 | [2] | array<integers> |
| Name | Scope | Description | Example | Type |
| --- | --- | --- | --- | --- |
| context | required | instream or outstream | "outstream" | string |
| playerSize | required | width, height of the player in pixels | [640,360] - will be translated to w and h in bid request | array<integers> |
| mimes | required | List of content MIME types supported by the player (see openRTB v2.5 for options) | ["video/mp4"] | array<string> |
| protocols | recommended | Supported video bid response protocol values <br />1: VAST 1.0 <br />2: VAST 2.0 <br />3: VAST 3.0 <br />4: VAST 1.0 Wrapper <br />5: VAST 2.0 Wrapper <br />6: VAST 3.0 Wrapper <br />7: VAST 4.0 <br />8: VAST 4.0 Wrapper | [2,3,5,6] | array<integers> |
| api | recommended | Supported API framework values: <br />1: VPAID 1.0 <br />2: VPAID 2.0 <br />3: MRAID-1 <br />4: ORMMA <br />5: MRAID-2 | [2] | array<integers> |
| linearity | recommended | OpenRTB2 linearity. 1: linear (in-stream ad), 2: non-linear (overlay ad) | 1 | integer |
| maxduration | recommended | Maximum video ad duration in seconds. | 30 | integer |
| minduration | recommended | Minimum video ad duration in seconds | 6 | integer |
| playbackmethod | recommended | Playback methods that may be in use. Only one method is typically used in practice. (see openRTB v2.5 section 5.10 for options)| [2]| array<integers> |
| playbackmethod | recommended | Playback methods that may be in use. Only one method is typically used in practice. (see openRTB v2.5 section 5.10 for options) | [2] | array<integers> |
| minbitrate | optional | Minimum bit rate in Kbps. | 300 | integer |
| maxbitrate | optional | Maximum bit rate in Kbps. | 9600 | integer |
| battr | optional | Blocked creative attributes | [13,14] | array<integers>|
| battr | optional | Blocked creative attributes | [13,14] | array<integers> |
| startdelay | recommended | Indicates the start delay in seconds for pre-roll, mid-roll, or post-roll ad placements.<br /> >0: Mid-Roll (value indicates start delay in second)<br /> 0: Pre-Roll<br />-1: Generic Mid-Roll<br />-2: Generic Post-Roll | 0 | integer |
| placement | recommended | Placement type for the impression. (see openRTB v2.5 section 5.9 for options) | 1 | integer |
| | | | | |

### AdUnit Format for Video
## AdUnit Format for Video

```javascript
var videoAdUnits = [{
Expand Down
Loading