From fefaddc2b0f13871ef3abb95c2648b7af1092216 Mon Sep 17 00:00:00 2001 From: Ahmad Lobany Date: Mon, 5 Sep 2022 18:24:05 +0300 Subject: [PATCH] updating-taboola-adapter-doc-dynamic-url-param --- dev-docs/bidders/taboola.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/dev-docs/bidders/taboola.md b/dev-docs/bidders/taboola.md index 97c3d6eb..6b796aa4 100644 --- a/dev-docs/bidders/taboola.md +++ b/dev-docs/bidders/taboola.md @@ -27,13 +27,14 @@ The Taboola Adapter requires setup before beginning. Please contact us at prebid {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|----------------|----------|---------------------------------------------------------|----------------------------|--------------| -| `tagId` | required | Tag ID / Placement Name
| `'Below The Article'` | `String` | -| `publisherId` | required | Numeric Publisher ID
(as provided by Taboola) | `'1234567'` | `String` | -| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | -| `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` | -| `bidfloor` | optional | CPM bid floor | `0.25` | `Float` | +| Name | Scope | Description | Example | Type | +|---------------|----------|---------------------------------------------------------|----------------------------|--------------| +| `tagId` | required | Tag ID / Placement Name
| `'Below The Article'` | `String` | +| `publisherId` | required | Numeric Publisher ID
(as provided by Taboola) | `'1234567'` | `String` | +| `bcat` | optional | List of blocked advertiser categories (IAB) | `['IAB1-1']` | `Array` | +| `badv` | optional | Blocked Advertiser Domains | `'example.com'` | `String Url` | +| `bidfloor` | optional | CPM bid floor | `0.25` | `Float` | +| `url` | optional | Endpoint Url (only if provided by Taboola) | `https://example.com` | `String` | ### Example Ad Unit @@ -52,7 +53,8 @@ The Taboola Adapter requires setup before beginning. Please contact us at prebid publisherId: 'your-publisher-id', bidfloor: 0.25, // Optional - default is null bcat: ['IAB1-1'], // Optional - default is [] - badv: ['example.com'] // Optional - default is [] + badv: ['example.com'], // Optional - default is [] + url: 'https://example.com' // Optional - default is null } }] }];