Skip to content

Commit

Permalink
init (prebid#3661)
Browse files Browse the repository at this point in the history
  • Loading branch information
supadm authored and jlaso committed Aug 31, 2023
1 parent 4b0541c commit 4b54895
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions dev-docs/bidders/admaru.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
---
layout: bidder
title: Admaru
description: Admaru Bidder Adapter
pbjs: true
biddercode: admaru
media_types: banner
gdpr_supported: false
schain_supported: false
usp_supported: false
---


### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|------------------|----------|------------------|------------------------------|----------|
| `pub_id` | required | Publisher id | `'ap4m2b6m8'` | `string` |
| `adspace_id` | required | Adspace id | `'a3j5n6b1'` | `string` |

### Test Parameters
```
var adUnits = [
{
code: 'test-div',
mediaTypes: {
banner: {
sizes: [[300, 250]], // a display size
}
},
bids: [
{
bidder: "admaru",
params: {
pub_id: '1234', // string - required
adspace_id: '1234' // string - required
}
}
]
}
];
```

0 comments on commit 4b54895

Please sign in to comment.