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
}
}]
}];