Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

malltv Bid Adapter: update maintainer and docs #7973

Merged
merged 1 commit into from
Jan 27, 2022
Merged
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
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"]
}
}
}
}]
}
},
],
},
];
```