Skip to content
Open
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
18 changes: 18 additions & 0 deletions dev-docs/analytics/adplus.md
Original file line number Diff line number Diff line change
@@ -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',
});
```
3 changes: 2 additions & 1 deletion dev-docs/bidders/adplus.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <adplusdestek@turkcell.com.tr>.
The AdPlus Bidding adapter requires setup before beginning. Please contact us at <dijitalreklam@turkcell.com.tr>.

### Bid Params

Expand Down
38 changes: 38 additions & 0 deletions dev-docs/modules/userid-submodules/adplus.md
Original file line number Diff line number Diff line change
@@ -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"
}
}]
}
});
```