Skip to content

Commit

Permalink
Shinez RTB bid adapter (#4826)
Browse files Browse the repository at this point in the history
* added gpp_supported: true

* added shinezRtb docs
  • Loading branch information
saar120 authored Dec 11, 2023
1 parent 2f5562f commit a52582a
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions dev-docs/bidders/shinezRtb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
layout: bidder
title: ShinezRTB
description: Prebid Shinez RTB Bidder Adaptor
biddercode: shinezRtb
filename: shinezRtbBidAdapter
userIds: britepoolId, criteo, id5Id, identityLink, liveIntentId, netId, parrableId, pubCommonId, unifiedId
tcfeu_supported: true
usp_supported: true
coppa_supported: false
schain_supported: true
gpp_supported: true
floors_supported: true
media_types: banner, video
prebid_member: false
safeframes_ok: false
deals_supported: false
pbs_app_supported: false
fpd_supported: false
ortb_blocking_supported: false
multiformat_supported: will-bid-on-one
pbjs: true
sidebarType: 1
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|------------|----------|-------------------------------------------------------------------------------------------|------------------------------|----------|
| `cId` | required | The connection ID from shinezRtb. | `'562524b21b1c1f08117fc7f9'` | `string` |
| `pId` | required | The publisher ID from shinezRtb. | `'59ac17c192832d0011283fe3'` | `string` |
| `bidFloor` | optional | The minimum bid value desired. shinezRtb will not respond with bids lower than this value. | `0.90` | `float` |

## Example

```javascript
var adUnits = [{
code: 'banner-div',
mediaTypes: {
banner: {
sizes: [
[300, 250],
[728, 90]
]
}
},
bids: [{
bidder: 'shinezRtb',
params: {
cId: '562524b21b1c1f08117fc7f9', // Required - PROVIDED DURING SETUP...
pId: '59ac17c192832d0011283fe3', // Required - PROVIDED DURING SETUP...
bidFloor: 1.23 // Optional
}
}]
}
];

// configure pbjs to enable user syncing
pbjs.setConfig({
userSync: {
filterSettings: {
iframe: {
bidders: 'shinezRtb',
filter: 'include'
}
}
}
});
```

0 comments on commit a52582a

Please sign in to comment.