Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new docs for our Taboola adapter #3760

Merged
merged 14 commits into from
May 26, 2022
59 changes: 59 additions & 0 deletions dev-docs/bidders/taboola.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---
layout: bidder
title: Taboola
description: Prebid Taboola Bidder Adapter
pbjs: true
biddercode: taboola
gdpr_supported: true
usp_supported: true
coppa_supported: true
schain_supported: false
media_types: banner
gvl_id: 42
prebid_member: true
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I do not see Taboola listed on this page, https://prebid.org/membership/member-directory/

floors_supported: true
safeframes_ok: true
---

### Note
- Supports `display` format.
- Uses `OpenRTB` standard.

### Registration

The Taboola Adapter requires setup before beginning. Please contact us at [email protected].

### Bid Params

{: .table .table-bordered .table-striped }

| Name | Scope | Description | Example | Type |
|----------------|----------|---------------------------------------------------------|----------------------------|--------------|
| `tagId` | required | Tag ID / Placement Name <br>(as provided by Taboola) | `'Below The Article'` | `String` |
| `publisherId` | required | Alphabetic Publisher ID <br>(as provided by Taboola) | `'acme-publishing'` | `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` | `Integer` |


### Example Ad Unit
```javascript
var adUnits = [{
code: 'your-unit-container-id',
mediaTypes: {
banner: {
sizes: [[300, 250], [300,600]]
}
},
bids: [{
bidder: 'taboola',
params: {
tagId: 'Placement Name',
publisherId: 'your-publisher-id',
bidfloor: 0.25, // Optional - default is null
bcat: ['IAB1-1'], // Optional - default is []
badv: ['example.com'] // Optional - default is []
}
}]
}];
```