-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prisma Bid Adapter: add new bid adapter (#3898)
* Prisma Bid Adapter: add new bid adapter * Update prisma.md
- Loading branch information
Showing
1 changed file
with
65 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
--- | ||
layout: bidder | ||
title: Prisma | ||
description: Prebid Prisma Bidder Adapter | ||
pbjs: true | ||
biddercode: prisma | ||
gdpr_supported: true | ||
usp_supported: true | ||
schain_supported: true | ||
userIds: id5Id | ||
media_types: banner, video | ||
glv_id: 965 | ||
pbs: false | ||
|
||
--- | ||
|
||
|
||
### Bid Params | ||
|
||
{: .table .table-bordered .table-striped } | ||
| Name | Scope | Description | Example | Type | | ||
|---------------|----------|-----------------------|--------------------------------------|-----------| | ||
| `account` | required | Prisma account ID | `'1067'` | `string` | | ||
| `tagId` | required | Prisma tag ID | `'luvxjvgn'` | `string` | | ||
|
||
### Test Parameters | ||
|
||
``` | ||
var adUnits = [ | ||
// Banner adUnit | ||
{ | ||
code: 'banner-div', | ||
mediaTypes: { | ||
banner: { | ||
sizes: [[300, 250], [300,600]] | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'prisma', | ||
params: { | ||
account: '1067', | ||
tagId: 'luvxjvgn' | ||
} | ||
}] | ||
}, | ||
// Video adUnit | ||
{ | ||
code: 'video1', | ||
mediaTypes: { | ||
video: { | ||
playerSize: [640, 480], | ||
context: 'instream' | ||
} | ||
}, | ||
bids: [{ | ||
bidder: 'prisma', | ||
params: { | ||
account: '1067', | ||
tagId: 'luvxjvgn' | ||
} | ||
}] | ||
}; | ||
]; | ||
``` |