Skip to content

Commit

Permalink
Merge pull request prebid#2 from taboola/updating-taboola-adapter-doc…
Browse files Browse the repository at this point in the history
…-dynamic-url-param

updating-taboola-adapter-doc-dynamic-url-param
  • Loading branch information
ahmadlob authored Sep 6, 2022
2 parents e481601 + fefaddc commit 8fdc5f4
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions dev-docs/bidders/taboola.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <br> | `'Below The Article'` | `String` |
| `publisherId` | required | Numeric Publisher ID <br>(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 <br> | `'Below The Article'` | `String` |
| `publisherId` | required | Numeric Publisher ID <br>(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
Expand All @@ -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
}
}]
}];
Expand Down

0 comments on commit 8fdc5f4

Please sign in to comment.