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

Anyclip bidder dev doc #5199

Merged
merged 5 commits into from
Apr 24, 2024
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
61 changes: 61 additions & 0 deletions dev-docs/bidders/anyclip.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
layout: bidder
title: AnyClip
description: AnyClip Bidder Adapter
biddercode: anyclip
tcfeu_supported: false
usp_supported: true
coppa_supported: true
gpp_sids: usp
schain_supported: true
dchain_supported: false
userId: pubProvidedId, unifiedId
media_types: banner
floors_supported: true
fpd_supported: false
pbjs: true
pbs: false
prebid_member: false
multiformat_supported: will-not-bid
ortb_blocking_supported: true
privacy_sandbox: no
safeframes_ok: true
sidebarType: 1
---

### Note

For more information about [AnyClip](https://www.anyclip.com), please contact [[email protected]]([email protected]).

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|-----------------------|--------------------------|-----------|
| `publisherId` | required | Publisher ID | `'12345'` | `string` |
| `supplyTagId` | required | Supply Tag ID | `'-mptNo0BycUG4oCDgGrU'` | `string` |
| `floor` | optional | Floor Price | `0.5` | `float` |

#### Sample Banner only Ad Unit

```js
var adUnits = [{
code: 'adunit1', // ad slot HTML element ID
mediaTypes: {
banner: {
sizes: [
[300, 250],
[728, 90]
]
}
},
bids: [{
bidder: 'anyclip',
params: {
publisherId: '12345', // required, string
supplyTagId: '-mptNo0BycUG4oCDgGrU', // required, string
floor: 0.5 // optional, floor
}
}]
}]
```
Loading