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
54 changes: 54 additions & 0 deletions dev-docs/bidders/mile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
---
layout: bidder
title: Mile
description: Prebid Mile Bidder Adapter
biddercode: mile
tcfeu_supported: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
tcfeu_supported: true
tcfeu_supported: false
gvl_id: none

You can't claim tcfeu_supported if you don't have a gvl_id .

See https://docs.prebid.org/dev-docs/bidder-adaptor.html#submitting-your-adapter

gvl_id: 1464
usp_supported: true
coppa_supported: true
gpp_supported: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
gpp_supported: true
gpp_sids: tcfeu, tcfca, usnat, usstate_all, usp

Add the section ids you actually do support

schain_supported: true
media_types: banner
safeframes_ok: true
deals_supported: false
floors_supported: true
fpd_supported: true
pbjs: true
pbs: false
sidebarType: 1
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|---------------------------------|----------------------|----------|
| `publisherId` | required | The publisher ID from Mile | `'1234'` | `string` |
| `placementId` | required | The placement ID from Mile | `'1234'` | `string` |
| `siteId` | required | The site ID from Mile | `'1234'` | `string` |

### Configuration

The Mile adapter requires `publisherId`, `placementId`, and `siteId` parameters to be provided. Contact your Mile account representative to obtain these values.

### Example Ad Unit: Banner

```javascript
var adUnits = [{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [[300, 250], [728, 90]]
}
},
bids: [{
bidder: 'mile',
params: {
publisherId: 'publisherId',
placementId: 'placementId',
siteId: 'siteId'
}
}]
}];
```