diff --git a/dev-docs/bidders/contxtful.md b/dev-docs/bidders/contxtful.md index 930b1f1d75..550cdb02f6 100644 --- a/dev-docs/bidders/contxtful.md +++ b/dev-docs/bidders/contxtful.md @@ -16,7 +16,7 @@ pbjs: true pbs: true pbs_app_supported: false prebid_member: true -multiformar_supported: will-bid-on-any +multiformat_supported: will-bid-on-any ortb_blocking_supported: true --- @@ -32,13 +32,50 @@ The Contxtful bidder adapter requires some setup. Contact us at [contact@contxtf | `placementId` | required | The placement identifier | `'p12345678'` | `string` | | `customerId` | required | The customer identifier | `'DEMO123456'` | `string` | -### Configuration +### Configuration - Prebid.js Adapter + +n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. + +see: [contxtfulRtdProvider](/dev-docs/modules/contxtfulRtdProvider) ```javascript pbjs.setConfig({ "contxtful":{ "version":"v1", - "customer":"<>" + "customer":"" + }, + "realTimeData":{ + "dataProviders":[ + { + "name":"contxtful", + "waitForIt":true, + "params":{ + "version":"v1", + "customer":"", + "bidders":[ + "contxtful", + "" + ], + "adServerTargeting":true + } + } + ] + } +} +); +``` + +### Configuration - Prebid Server Adapter + +n.b. It is strongly recommended that you use the bid adapter in conjunction with the contxtful RTD provider module. + +see: [contxtfulRtdProvider](/dev-docs/modules/contxtfulRtdProvider) + +```javascript +pbjs.setConfig({ + "s2sConfig":{ + "bidders": ["contxtful", ""], + "" }, "realTimeData":{ "dataProviders":[ @@ -47,9 +84,9 @@ pbjs.setConfig({ "waitForIt":true, "params":{ "version":"v1", - "customer":"<>", + "customer":"", "bidders":[ - "contxtful" + "" ], "adServerTargeting":true } @@ -76,18 +113,18 @@ AdUnit-specific data is supported using `AdUnit.ortb2Imp.ext.*` var adUnitList = [ { code: 'AD_UNIT_NAME_HERE', - mediaTypes: { /* "<< ENTER_FORMAT_HERE >> */ }, + mediaTypes: { /* " */ }, bids: [{ bidder: 'contxtful', params: { - placementId: "<>", - customerId: "<>" + placementId: "", + customerId: "" } }], ortb2Imp: { ext: { data: { - divId: "<>" + divId: "" } } }