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

New adapter: Flipp #4551

Merged
merged 8 commits into from
Jun 15, 2023
31 changes: 31 additions & 0 deletions dev-docs/bidders/flipp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: bidder
title: flipp
description: Prebid Flipp Bidder Adapter
biddercode: flipp
media_types: banner
safeframes_ok: true
pbjs: true
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
pbs: true
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---------------|----------|--------------|-----------|----------|
| `publisherNameIdentifier` | required | Publisher name identifier | `test-publisher-name` | `string` |
| `creativeType` | required | Type of the creative | `NativeX` | `NativeX\|DTX` |
| `siteId` | required | ID associated with the site | `123456` | `integer` |
| `zoneIds` | optional | Zones to request from bidder | `[789, 123]` | `array[integer]` |
| `userKey` | optional | User Key to power experience optimization and frequency capping | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` |
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
| `ip` | optional | User IP for geolocation targetting purposes. If not set here attempt to retrive from `request.Device.IP`. | `123.123.123.123` | `string` |
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
| `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` |

Current available integration options are as follows:

| Name | Scope | Description | Example | Type |
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
|---------------|----------|--------------|-----------|----------|
| `startCompact` | optional | Height of the experience will be reduced | `true` | `boolean` |
| `dwellExpand` | optional | Auto expand the experience after a certain time passes | `true` | `boolean` |
| `contentCode` | optional | Force show a certain experience. Generally used for testing and debugging purposes. | `publisher-test` | `string` |