Skip to content

Commit

Permalink
Anyclip bidder dev doc (#5199)
Browse files Browse the repository at this point in the history
* added anyclip bidder dev-doc

* added safeframes_ok: true

* added new empty line at the end

* fixed readme

* changed gpp_support to gpp_sids: usp, added dchain_supported: false, fpd_supported: false, multiformat_supported: will-not-bid, ortb_blocking_supported: true, privacy_sandbox: no

---------

Co-authored-by: Basil Goldman <>
  • Loading branch information
basil79 authored Apr 24, 2024
1 parent 2d773a0 commit 3cc89c7
Showing 1 changed file with 61 additions and 0 deletions.
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 [support@anyclip.com](support@anyclip.com).

### 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
}
}]
}]
```

0 comments on commit 3cc89c7

Please sign in to comment.