diff --git a/dev-docs/bidders/spotx.md b/dev-docs/bidders/spotx.md index 7988e87f4d..4339489d22 100644 --- a/dev-docs/bidders/spotx.md +++ b/dev-docs/bidders/spotx.md @@ -12,24 +12,39 @@ biddercode: spotx biddercode_longer_than_12: false media_types: video +prebid_1_0_supported: true +gdpr_supported: true --- ### bid params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------|-----------| -| `channel_id` | required | A unique 5 digit ID that is generated by the SpotX publisher platform when a channel is created | `'85394'` | `string` | -| `video_slot` | required | The video slot is the video object that the creative can use to render | `'contentElement'` | `string` | -| `slot` | required | HTML element on the page in which the ad is to be rendered. | `'content'` | `string` | -| `content_width` | optional | The desired width of the video ad placement. Requires content_height to also be set | `'640'` | `string` | -| `content_height` | optional | The desired height of the video ad placement. Requires content_width to also be set | `'480'` | `string` | -| `content_id` | optional | An identifier for the content that can be used for refinement and custom reporting | `'9876543210'` | `string` | -| `contentPageUrl` | optional | Set the url to be used for the content page, uses the current pages url by default | `'http://www.spotx.tv'` | `string` | -| `ados` | optional | See SpotX documentation [here](https://developer.spotxchange.com/content/local/docs/sdkDocs/DirectSdk/README.md#sending-query-parameters-to-spotmarket) | | `object` | -| `ad_volume` | optional | Value between 0 and 1 to denote the volume the ad should start at | | `float` | -| `hide_skin` | optional | Set to true to hide the spotx skin | | `boolean` | -| `autoplay` | optional | Set to true to attempt to play the ad as soon as it is loaded | | `boolean` | -| `ad_mute` | optional | Set to true to start the ad with the volume muted | | `boolean` | -| `custom` | optional | See SpotX documentation [here](https://developer.spotxchange.com/content/local/docs/sdkDocs/DirectSdk/README.md#custom-property-for-key-value-pair-reporting) | | `object` | +| Name | Scope | Description | Example | Type | +|----------------------|----------|---------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------| +| `channel_id` | required | A unique 5 digit ID that is generated by the SpotX publisher platform when a channel is created | `'85394'` | `string` | +| `ad_unit` | required | Token that describes which ad unit to play: instream or outstream | `'outstream'` | `string` | +| `outstream_function` | optional | Custom function to be used as a renderer. | `function(bid){console.log(bid);}` | `function` | +| `outstream_options` | optional | Object to set options on the renderer. See [outstream_options Object](#spotx-outstream-options-object) | `{}` | `object` | +| `secure` | optional | Boolean identifying whether the reqeusts should be https or not (used to override the protocol if the page isn't secure. | `true` | `boolean` | +| `mimes` | optional | List of mimetypes to allow in ad. | `['application/javascript', 'video/mp4', 'video/webm'] | `array` | +| `ad_volume` | optional | Value between 0 and 1 to denote the volume the ad should start at | | `float` | +| `price_floor` | optional | Set the current channel price floor in real time. | `10` | `integer` | +| `hide_skin` | optional | Set to true to hide the spotx skin | | `boolean` | +| `custom` | optional | See SpotX documentation [here](https://developer.spotxchange.com/content/local/docs/sdkDocs/DirectSdk/README.md#custom-property-for-key-value-pair-reporting) | | `object` | + +