Skip to content

Commit

Permalink
Prisma Bid Adapter: add new bid adapter (#3898)
Browse files Browse the repository at this point in the history
* Prisma Bid Adapter: add new bid adapter

* Update prisma.md
  • Loading branch information
gchicoye authored Jul 21, 2022
1 parent 1e477f7 commit dc2199f
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions dev-docs/bidders/prisma.md
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'
}
}]
};
];
```

0 comments on commit dc2199f

Please sign in to comment.