Skip to content

Commit 9ab2742

Browse files
Update SmartyTech adapter documentation with userId, consents, and chunks (#6259)
* Update SmartyTech adapter documentation with userId, consents, and chunks support - Add support for all Prebid.js User ID modules (userIds: all) - Add comprehensive privacy framework support: * GDPR (TCF EU) consent strings * CCPA/USP compliance * GPP (Global Privacy Platform) * COPPA compliance - Add chunks configuration documentation with examples - Update front matter with new supported features flags - Fix markdownlint issues and improve code block formatting This documentation update supports the upcoming SmartyTech adapter enhancements that will include userId transmission, consent handling, and request chunking. * Remove tcfeu and gpp
1 parent 99a0191 commit 9ab2742

File tree

1 file changed

+24
-2
lines changed

1 file changed

+24
-2
lines changed

dev-docs/bidders/smartytech.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,23 @@ pbjs: true
66
biddercode: smartytech
77
media_types: banner, video
88
multiformat_supported: will-bid-on-one
9+
usp_supported: true
10+
coppa_supported: true
11+
userIds: all
912
sidebarType: 1
1013
---
1114

1215
### Bid Params
1316

1417
{: .table .table-bordered .table-striped }
18+
1519
| Name | Scope | Description | Example | Type |
1620
|--------------|----------|--------------|---------|-----------|
1721
| `endpointId` | required | Endpoint ID. | `14` | `integer` |
1822

1923
### Sample Banner Ad Unit Example
2024

21-
```
25+
```javascript
2226
var adUnits = [{
2327
code: '/123123123/prebidjs-banner',
2428
mediaTypes: {
@@ -40,7 +44,7 @@ var adUnits = [{
4044

4145
### Sample Video Ad Unit Example
4246

43-
```
47+
```javascript
4448
var videoAdUnit = {
4549
code: '/123123123/video-vast-banner',
4650
mediaTypes: {
@@ -58,3 +62,21 @@ var videoAdUnit = {
5862
}]
5963
};
6064
```
65+
66+
### User ID Support
67+
68+
SmartyTech adapter supports all Prebid.js User ID modules. User IDs are automatically included in bid requests when available.
69+
70+
### Additional Configuration
71+
72+
It is possible to configure requests to be split into chunks so as to have fewer bid requests in a single http request (default value is 10).
73+
74+
```javascript
75+
pbjs.setBidderConfig({
76+
config: {
77+
smartytech: {
78+
chunkSize: 5 // makes 1 http request per 5 ad units configured
79+
}
80+
}
81+
});
82+
```

0 commit comments

Comments
 (0)