diff --git a/dev-docs/analytics/adplus.md b/dev-docs/analytics/adplus.md new file mode 100644 index 0000000000..4154d7973e --- /dev/null +++ b/dev-docs/analytics/adplus.md @@ -0,0 +1,18 @@ +--- +layout: analytics +title: AdPlus +description: AdPlus Analytics Adapter +modulecode: appier +--- + +#### About + +Analytics adapter for AdPlus platform. Contact [adplusdestek@turkcell.com.tr](adplusdestek@turkcell.com.tr) if you have any questions about integration. + +#### Example Configuration + +```javascript +pbjs.enableAnalytics({ + provider: 'adplus', +}); +``` diff --git a/dev-docs/bidders/adplus.md b/dev-docs/bidders/adplus.md index 58112efcb7..367c324b1b 100644 --- a/dev-docs/bidders/adplus.md +++ b/dev-docs/bidders/adplus.md @@ -4,13 +4,14 @@ title: AdPlus description: Prebid AdPlus Bidder Adapter biddercode: adplus media_types: banner +userIds: all pbjs: true sidebarType: 1 --- ### Note -The AdPlus Bidding adapter requires setup before beginning. Please contact us at . +The AdPlus Bidding adapter requires setup before beginning. Please contact us at . ### Bid Params diff --git a/dev-docs/modules/userid-submodules/adplus.md b/dev-docs/modules/userid-submodules/adplus.md new file mode 100644 index 0000000000..1fadf949f1 --- /dev/null +++ b/dev-docs/modules/userid-submodules/adplus.md @@ -0,0 +1,38 @@ +--- +layout: userid +title: AdPlus ID +description: AdPlus ID User ID sub-module +useridmodule: adplusIdSystem +bidRequestUserId: adplusId +eidsource: ad-plus.com.tr +example: '"1111"' +--- + +## AdPlus ID Configuration + +Please make sure to add the AdPlus user ID sub-module to your Prebid.js package with: + +```shell +gulp build --modules=adplusIdSystem,userId +``` + +{: .table .table-bordered .table-striped } + +| Param under userSync.userIds[] | Scope | Type | Description | Example | +| --- | --- | --- | --- | --- | +| name | Required | String | The name of this module: `"adplusId"` | `"adplusId"` | + +## AdPlus ID Example + +```javascript +pbjs.setConfig({ + userSync: { + userIds: [{ + name: "adplusId", + storage: { + name: "adplusId" + } + }] + } +}); +```