From bb69cf9923a97c9fb6a6a315198f01c212c7e58f Mon Sep 17 00:00:00 2001 From: Gabriel Chicoye Date: Tue, 5 Apr 2022 12:48:31 +0200 Subject: [PATCH 1/4] video added --- dev-docs/bidders/nexx360.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-docs/bidders/nexx360.md b/dev-docs/bidders/nexx360.md index 47ff856926..8f039279c7 100644 --- a/dev-docs/bidders/nexx360.md +++ b/dev-docs/bidders/nexx360.md @@ -8,7 +8,7 @@ gdpr_supported: true usp_supported: true schain_supported: true userIds: id5Id -media_types: banner +media_types: banner, video glv_id: 965 --- @@ -18,5 +18,5 @@ glv_id: 965 {: .table .table-bordered .table-striped } | Name | Scope | Description | Example | Type | |---------------|----------|-----------------------|--------------------------------------|-----------| -| `account` | required | Mediasquare owner ID | `'1067'` | `string` | -| `tagId` | required | Mediasquare code ID | `'luvxjvgn'` | `string` | +| `account` | required | Nexx360 account ID | `'1067'` | `string` | +| `tagId` | required | Nexx360 tag ID | `'luvxjvgn'` | `string` | From 456d9544fad11a24680051b6f04c0099f0bc568d Mon Sep 17 00:00:00 2001 From: Gabriel Chicoye Date: Wed, 13 Apr 2022 20:46:47 +0200 Subject: [PATCH 2/4] additional parameters added --- dev-docs/bidders/nexx360.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-docs/bidders/nexx360.md b/dev-docs/bidders/nexx360.md index 8f039279c7..6ab7af4441 100644 --- a/dev-docs/bidders/nexx360.md +++ b/dev-docs/bidders/nexx360.md @@ -20,3 +20,6 @@ glv_id: 965 |---------------|----------|-----------------------|--------------------------------------|-----------| | `account` | required | Nexx360 account ID | `'1067'` | `string` | | `tagId` | required | Nexx360 tag ID | `'luvxjvgn'` | `string` | +| `bidfloor` | optional | Bidfloor applied to auction (default: 0) | `0.8` | `float` | +| `bidfloorCurrency` | optional | Bidfloor currency (default: `USD`) - Can be `USD` or `EUR` | `USD` | `string` | +| `keywords` | optional | Keywords used for targeting | `{ 'interest': ['cars', 'sports']}` | `object` | From db0de9bbaaa78565256b0004dcae414c17b05a1d Mon Sep 17 00:00:00 2001 From: Gabriel Chicoye Date: Mon, 30 May 2022 15:38:54 +0200 Subject: [PATCH 3/4] Fix currency to string format As discussed, I've fix the string to currency issue --- dev-docs/bidders/nexx360.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/nexx360.md b/dev-docs/bidders/nexx360.md index 6ab7af4441..e0c22c9524 100644 --- a/dev-docs/bidders/nexx360.md +++ b/dev-docs/bidders/nexx360.md @@ -21,5 +21,5 @@ glv_id: 965 | `account` | required | Nexx360 account ID | `'1067'` | `string` | | `tagId` | required | Nexx360 tag ID | `'luvxjvgn'` | `string` | | `bidfloor` | optional | Bidfloor applied to auction (default: 0) | `0.8` | `float` | -| `bidfloorCurrency` | optional | Bidfloor currency (default: `USD`) - Can be `USD` or `EUR` | `USD` | `string` | +| `bidfloorCurrency` | optional | Bidfloor currency (default: `USD`) - Can be `'USD'` or `'EUR'` | `'USD'` | `string` | | `keywords` | optional | Keywords used for targeting | `{ 'interest': ['cars', 'sports']}` | `object` | From 3228c7cb96e555ef0ad9dccec15763293c0c565a Mon Sep 17 00:00:00 2001 From: Gabriel Chicoye Date: Mon, 30 May 2022 15:39:36 +0200 Subject: [PATCH 4/4] Fix update --- dev-docs/bidders/nexx360.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/nexx360.md b/dev-docs/bidders/nexx360.md index e0c22c9524..8c9c76c7ce 100644 --- a/dev-docs/bidders/nexx360.md +++ b/dev-docs/bidders/nexx360.md @@ -21,5 +21,5 @@ glv_id: 965 | `account` | required | Nexx360 account ID | `'1067'` | `string` | | `tagId` | required | Nexx360 tag ID | `'luvxjvgn'` | `string` | | `bidfloor` | optional | Bidfloor applied to auction (default: 0) | `0.8` | `float` | -| `bidfloorCurrency` | optional | Bidfloor currency (default: `USD`) - Can be `'USD'` or `'EUR'` | `'USD'` | `string` | +| `bidfloorCurrency` | optional | Bidfloor currency (default: `'USD'`) - Can be `'USD'` or `'EUR'` | `'USD'` | `string` | | `keywords` | optional | Keywords used for targeting | `{ 'interest': ['cars', 'sports']}` | `object` |