Skip to content

Commit eaa9fad

Browse files
committed
Yieldmo Synthetic Inventory Module: initial commit
1 parent 40dbcba commit eaa9fad

1 file changed

Lines changed: 68 additions & 0 deletions

File tree

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
layout: page_v1
3+
page_type: module
4+
title: Yieldmo Synthetic Inventory Module
5+
description: Yieldmo PMP deals
6+
module_code : ymSyntheticInventoryModule
7+
display_name : Synthetic Inventory Module
8+
enable_download : true
9+
sidebarType : 1
10+
---
11+
12+
# Yieldmo Synthetic Inventory Module
13+
{:.no_toc}
14+
15+
### Note: In order to use Yieldmo adapter please reach out to your Yieldmo account's person or support@yieldmo.com for more information.
16+
17+
* TOC
18+
{:toc}
19+
20+
## Overview
21+
22+
This module enables publishers to set up Yieldmo Synthetic Outstream ads on their pages.
23+
24+
If publishers will enable this module and provide placementId, this module will create a placement on the page and inject Yieldmo SDK into this placement. Publisher will then need to get a palcement id from their Yieldmo account manager (accounts email) and setup corresponding ad units on the GAM ad server
25+
26+
{: .alert.alert-warning :}
27+
## Disclosure
28+
29+
This module loads external JavaScript to render creatives
30+
31+
## Integration
32+
33+
Build the MASS module into the Prebid.js package with:
34+
35+
```
36+
gulp build --modules=ymSyntheticInventoryModule,...
37+
```
38+
39+
40+
## Module Configuration
41+
42+
```js
43+
pbjs.que.push(function() {
44+
pbjs.setConfig({
45+
ym_synthetic_inventory: {
46+
placementId: 123456
47+
}
48+
});
49+
});
50+
```
51+
52+
### Configuration Parameters
53+
54+
|Name |Type |Description |
55+
| :------------ | :------------ | :------------ |
56+
|placementId | Number | Enable/disable the module if valid placementId is present
57+
58+
### Example Configurations
59+
60+
```js
61+
pbjs.que.push(function() {
62+
pbjs.setConfig({
63+
ym_synthetic_inventory: {
64+
placementId: 123456
65+
}
66+
});
67+
});
68+
```

0 commit comments

Comments
 (0)