Skip to content

Commit

Permalink
Contxtful Bidder adapter: New Documentation (prebid#5607)
Browse files Browse the repository at this point in the history
* doc: contxtful markdown, first draft

* doc: remove unset, add schain, fdp

* doc: add user sync recommendation

* doc: typo

* doc: wildcard no go

---------

Co-authored-by: GosselinV <[email protected]>
  • Loading branch information
sebastienrufiange and ctxtfl-gosselinv authored Nov 3, 2024
1 parent 5cc4836 commit b1aae2f
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions dev-docs/bidders/contxtful.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: bidder
title: Contxtful
description: Prebid Contxtful Bidder Adapter
biddercode: contxtful
tcfeu_supported: false
usp_supported: true
coppa_supported: true
schain_supported: true
userId: all
media_types: banner, video, audio
safeframes_ok: true
floors_supported: true
fpd_supported: true
pbjs: true
pbs: false
pbs_app_supported: false
prebid_member: true
multiformar_supported: will-bid-on-any
ortb_blocking_supported: true
---

# Note

The Contxtful bidder adapter requires some setup. Contact us at [[email protected]](mailto:[email protected])

## User Sync
Contxtful recommends enabling [User Syncing](https://docs.prebid.org/dev-docs/publisher-api-reference/setConfig.html#setConfig-Configure-User-Syncing) to optimize match rate and monetization.

```javascript
// Enable iframe usersync
pbjs.setConfig({
userSync: {
filterSettings: {
iframe: {
bidders: ['contxtful'],
filter: 'include'
}
}
}
});

// Allow local storage usage
pbjs.bidderSettings = {
contxtful: {
storageAllowed: true
}
}
```

0 comments on commit b1aae2f

Please sign in to comment.