Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dev-docs/analytics/automatad.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ tcfeu_supported: false
usp_supported: false
coppa_supported: false
prebid_member: false
enable_download: false
enable_download: true
---

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

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

I've added the gvl_id in the docs now.

gvl_id: 1464
usp_supported: true
coppa_supported: true
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'
}
}]
}];
```
Loading