From 9dd9c0effefebf5ca19a1547fd6068b4089ac91d Mon Sep 17 00:00:00 2001 From: Hasan Kanjee Date: Mon, 24 Apr 2023 15:32:09 -0400 Subject: [PATCH 1/8] OFF-488 createprebid documentation for flipp bidder --- dev-docs/bidders/flipp.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 dev-docs/bidders/flipp.md diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md new file mode 100644 index 0000000000..32c8593be2 --- /dev/null +++ b/dev-docs/bidders/flipp.md @@ -0,0 +1,21 @@ +--- +layout: bidder +title: flipp +description: Prebid Flipp Bidder Adapter +biddercode: flipp +media_types: banner +safeframes_ok: true +pbjs: true +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 track the user | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` | \ No newline at end of file From 5c8378107a44aa5d72cf768c3e82556e7a318231 Mon Sep 17 00:00:00 2001 From: Matt Mohan Date: Mon, 24 Apr 2023 16:14:19 -0400 Subject: [PATCH 2/8] Update flipp.md --- dev-docs/bidders/flipp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index 32c8593be2..dac9650c68 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -18,4 +18,4 @@ pbs: true | `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 track the user | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` | \ No newline at end of file +| `userKey` | optional | User Key to power experience optimization and frequency capping | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` | From dc456000b55b382d5f9923f4b6d00b92287d2322 Mon Sep 17 00:00:00 2001 From: Hasan Kanjee <55110940+hasan-kanjee@users.noreply.github.com> Date: Tue, 9 May 2023 11:31:10 -0400 Subject: [PATCH 3/8] OFF-499 add options object to documentation (#2) --- dev-docs/bidders/flipp.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index dac9650c68..759063aa61 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -19,3 +19,10 @@ pbs: true | `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` | +| `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` | + +Current available integration options are as follows: + +| Name | Scope | Description | Example | Type | +|---------------|----------|--------------|-----------|----------| +| `startCompact` | optional | Height of the experience will be reduced | `true` | `boolean` | From 51f143b738c1b332f542465c71a9f6044480d3e1 Mon Sep 17 00:00:00 2001 From: Hasan Kanjee Date: Mon, 15 May 2023 22:43:00 -0400 Subject: [PATCH 4/8] add optional ip bidder param --- dev-docs/bidders/flipp.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index 759063aa61..e67d60fccd 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -19,6 +19,7 @@ pbs: true | `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` | +| `ip` | optional | User IP for geolocation targetting purposes. If not set here attempt to retrive from `request.Device.IP`. | `123.123.123.123` | `string` | | `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` | Current available integration options are as follows: From f31dbaa380f99c9af0f4b98282fad6dd6eed050a Mon Sep 17 00:00:00 2001 From: Hasan Kanjee Date: Wed, 17 May 2023 10:24:52 -0400 Subject: [PATCH 5/8] add additional allowed options --- dev-docs/bidders/flipp.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index e67d60fccd..8b83d1897b 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -27,3 +27,5 @@ Current available integration options are as follows: | Name | Scope | Description | Example | Type | |---------------|----------|--------------|-----------|----------| | `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` | From efec0f9dc42ffc9af742e3a8976b1fd0be66650f Mon Sep 17 00:00:00 2001 From: Hasan Kanjee Date: Mon, 12 Jun 2023 14:19:22 -0400 Subject: [PATCH 6/8] add missing metadata fields and remove ip from request --- dev-docs/bidders/flipp.md | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index 8b83d1897b..a6e30b62eb 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -4,9 +4,21 @@ title: flipp description: Prebid Flipp Bidder Adapter biddercode: flipp media_types: banner -safeframes_ok: true -pbjs: true +pbjs: false pbs: true +gdpr_supported: false +usp_supported: false +coppa_supported: false +schain_supported: false +floors_supported: false +userIds: none +prebid_member: false +safeframes_ok: true +deals_supported: false +pbs_app_supported: false +fpd_supported: false +multiformat_supported: will-not-bid +ortb_blocking_supported: false --- ### Bid Params @@ -19,11 +31,11 @@ pbs: true | `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` | -| `ip` | optional | User IP for geolocation targetting purposes. If not set here attempt to retrive from `request.Device.IP`. | `123.123.123.123` | `string` | | `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` | Current available integration options are as follows: +{: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------|----------|--------------|-----------|----------| | `startCompact` | optional | Height of the experience will be reduced | `true` | `boolean` | From 920ed4516a51d8e9060aadb09d69b1ae92c8f880 Mon Sep 17 00:00:00 2001 From: Hasan Kanjee Date: Mon, 12 Jun 2023 14:49:58 -0400 Subject: [PATCH 7/8] add additional description to userKey --- dev-docs/bidders/flipp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index a6e30b62eb..f94a7c1f26 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -30,7 +30,7 @@ ortb_blocking_supported: false | `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` | +| `userKey` | optional | User Key to power experience optimization and frequency capping. Publishers: please confirm with legal counsel before using this feature. | `4188d8a3-22d1-49cb-8624-8838a22562bd` | `uuidv4` | | `options` | optional | Additional integration specific context | `options: { "startCompact": true }` | `map[string]interface{}` | Current available integration options are as follows: From 76274ab19a106f2dc44bc750f8622f59ec55ef2d Mon Sep 17 00:00:00 2001 From: Mike Lei Date: Tue, 29 Aug 2023 18:57:02 -0700 Subject: [PATCH 8/8] add pbjs --- dev-docs/bidders/flipp.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/flipp.md b/dev-docs/bidders/flipp.md index f94a7c1f26..343f7e388f 100644 --- a/dev-docs/bidders/flipp.md +++ b/dev-docs/bidders/flipp.md @@ -4,9 +4,9 @@ title: flipp description: Prebid Flipp Bidder Adapter biddercode: flipp media_types: banner -pbjs: false +pbjs: true pbs: true -gdpr_supported: false +tcfeu_supported: false usp_supported: false coppa_supported: false schain_supported: false