diff --git a/dev-docs/bidders/automatad.md b/dev-docs/bidders/automatad.md deleted file mode 100644 index d5038a7776..0000000000 --- a/dev-docs/bidders/automatad.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -layout: bidder -title: Automatad OpenRTB Bid Adapter -description: Automatad OpenRTB Bid Adapter -biddercode: automatad -pbjs: true -pbs: true -media_types: banner -fpd_supported: false -sidebarType: 1 ---- - -#### Prebid.js Bid Params - -{: .table .table-bordered .table-striped } - -| Name | Scope | Description | Example | Type | -|-----------|----------|---------------------------|------------|----------| -| `siteId` | required | The site ID from automatad. | `"12adf45c"` | `string` | -| `placementId` | optional | The placement ID from automatad. | `"a34gh6d"` | `string` | - -### Prebid-Server Bid Params - -{: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|---------------|----------|-------------|---------|----------| -| `position` | optional | Position field from automatad | `22390678` | `string` | -| `placementId` | optional | The placement ID from automatad. | `"a34gh6d"` | `string` | diff --git a/dev-docs/bidders/mile.md b/dev-docs/bidders/mile.md new file mode 100644 index 0000000000..f2014d0a57 --- /dev/null +++ b/dev-docs/bidders/mile.md @@ -0,0 +1,53 @@ +--- +layout: analytics +title: Mile +description: Mile Prebid Analytics Adapter +modulecode: mileAnalytics +tcfeu_supported: false +usp_supported: false +coppa_supported: false +prebid_member: false +enable_download: false +--- + +#### Instructions for usage + +The [Mile](https://mile.tech/) analytics adapter requires on-boarding, configuration +parameters & addition of an external script that will be supplied to you by your Mile account team. Please reach out to your account team or + for more information. + +#### Adapter Configuration Options + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|--------------|--------------------|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|------------------| +| siteID | required | Your site ID | `N8vZLx` | string | +| publisherID | required | Your publisher ID | `PXfvBq` | string | +| logDebug | optional | Flag to collect debug data pertaining to auctions. Defaults to false | `false` | boolean | + +### Example Configuration + +```js +import CONSTANTS '../src/constants.json'; +// ... +const EVENTS = CONSTANTS.EVENTS +// ... +pbjs.enableAnalytics({ + provider: 'mileAnalytics', + options: { + siteID: 'N8vZLx', // supplied by Mile + publisherID: 'PXfvBq', // supplied by Mile + logDebug: false // Defaults to false + }, + includeEvents: [ + EVENTS.AUCTION_INIT, + EVENTS.BID_RESPONSE, + EVENTS.AUCTION_DEBUG, + EVENTS.BID_WON, + EVENTS.BIDDER_DONE, + EVENTS.NO_BID, + EVENTS.BID_TIMEOUT, + EVENTS.AUCTION_END + ] +}); +```