Skip to content

Commit 18af4ec

Browse files
committed
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.
1 parent a56fbc0 commit 18af4ec

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

dev-docs/bidders/smartytech.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,25 @@ pbjs: true
66
biddercode: smartytech
77
media_types: banner, video
88
multiformat_supported: will-bid-on-one
9+
tcfeu_supported: true
10+
usp_supported: true
11+
gpp_supported: true
12+
coppa_supported: true
13+
userIds: all
914
sidebarType: 1
1015
---
1116

1217
### Bid Params
1318

1419
{: .table .table-bordered .table-striped }
20+
1521
| Name | Scope | Description | Example | Type |
1622
|--------------|----------|--------------|---------|-----------|
1723
| `endpointId` | required | Endpoint ID. | `14` | `integer` |
1824

1925
### Sample Banner Ad Unit Example
2026

21-
```
27+
```javascript
2228
var adUnits = [{
2329
code: '/123123123/prebidjs-banner',
2430
mediaTypes: {
@@ -40,7 +46,7 @@ var adUnits = [{
4046

4147
### Sample Video Ad Unit Example
4248

43-
```
49+
```javascript
4450
var videoAdUnit = {
4551
code: '/123123123/video-vast-banner',
4652
mediaTypes: {
@@ -58,3 +64,30 @@ var videoAdUnit = {
5864
}]
5965
};
6066
```
67+
68+
### User ID Support
69+
70+
SmartyTech adapter supports all Prebid.js User ID modules. User IDs are automatically included in bid requests when available.
71+
72+
### Privacy and Consent Support
73+
74+
The SmartyTech adapter supports the following privacy frameworks:
75+
76+
- **GDPR (TCF EU)**: Full support for GDPR consent strings
77+
- **CCPA/USP**: Support for California Consumer Privacy Act and US Privacy
78+
- **GPP**: Support for Global Privacy Platform
79+
- **COPPA**: Support for Children's Online Privacy Protection Act
80+
81+
### Additional Configuration
82+
83+
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).
84+
85+
```javascript
86+
pbjs.setBidderConfig({
87+
config: {
88+
smartytech: {
89+
chunkSize: 5 // makes 1 http request per 5 ad units configured
90+
}
91+
}
92+
});
93+
```

0 commit comments

Comments
 (0)