Skip to content

Commit

Permalink
Update malltvBidAdapter.md (#7973)
Browse files Browse the repository at this point in the history
Changing maintainer of bid adapter
  • Loading branch information
ZikaMyhedin authored Jan 27, 2022
1 parent 2288ea4 commit 31e9866
Showing 1 changed file with 64 additions and 51 deletions.
115 changes: 64 additions & 51 deletions modules/malltvBidAdapter.md
Original file line number Diff line number Diff line change
@@ -1,68 +1,81 @@
# Overview

Module Name: MallTV Bidder Adapter Module

Type: Bidder Adapter

Maintainer: arditb@gjirafa.com
Maintainer: myhedin@gjirafa.com

# Description

MallTV Bidder Adapter for Prebid.js.

# Test Parameters

```js
var adUnits = [
{
code: 'test-div',
mediaTypes: {
banner: {
sizes: [
[300, 250],
[300, 300]
]
}
{
code: "test-div",
mediaTypes: {
banner: {
sizes: [
[300, 250],
[300, 300],
],
},
},
bids: [
{
bidder: "malltv",
params: {
propertyId: "105134", //Required
placementId: "846832", //Required
data: {
//Optional
catalogs: [
{
catalogId: 9,
items: ["193", "4", "1"],
},
],
inventory: {
category: ["tech"],
query: ["iphone 12"],
},
},
},
bids: [{
bidder: 'malltv',
params: {
propertyId: '105134', //Required
placementId: '846832', //Required
data: { //Optional
catalogs: [{
catalogId: 9,
items: ["193", "4", "1"]
}],
inventory: {
category: ["tech"],
query: ["iphone 12"]
}
}
}
}]
},
],
},
{
code: "test-div",
mediaTypes: {
video: {
context: "instream",
},
},
{
code: 'test-div',
mediaTypes: {
video: {
context: 'instream'
}
bids: [
{
bidder: "malltv",
params: {
propertyId: "105134", //Required
placementId: "846832", //Required
data: {
//Optional
catalogs: [
{
catalogId: 9,
items: ["193", "4", "1"],
},
],
inventory: {
category: ["tech"],
query: ["iphone 12"],
},
},
},
bids: [{
bidder: 'malltv',
params: {
propertyId: '105134', //Required
placementId: '846832', //Required
data: { //Optional
catalogs: [{
catalogId: 9,
items: ["193", "4", "1"]
}],
inventory: {
category: ["tech"],
query: ["iphone 12"]
}
}
}
}]
}
},
],
},
];
```

0 comments on commit 31e9866

Please sign in to comment.