| layout | bidder |
|---|---|
| title | APS |
| description | Prebid APS Bidder Adapter |
| biddercode | aps |
| tcfeu_supported | true |
| dsa_supported | false |
| gvl_id | 793 |
| usp_supported | true |
| coppa_supported | true |
| schain_supported | true |
| media_types | display, video |
| deals_supported | true |
| floors_supported | true |
| fpd_supported | true |
| ortb_blocking_supported | true |
| pbjs | true |
| pbs | false |
| prebid_member | true |
| multiformat_supported | will-bid-on-any |
| sidebarType | 1 |
{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|---|---|---|---|---|
aps.accountID |
required | APS-provided ID | 1234 |
string |
aps.debugURL |
optional | Bid endpoint | https://example.com/bid |
string |
aps.debug |
optional | Toggle to enable / disable debug mode | true |
boolean |
aps.renderMethod |
optional | Debug mode render method | fif |
string |
aps.creativeURL |
optional | Creative rendering URL | https://example.com/creative.js |
string |
aps.telemetry |
optional | Toggle to enable / disable APS telemetry | true |
boolean |
ortb2.regs.ext.agerange |
optional | US Age Law Compliance Value | 3 (refer to the table below) |
number |
| Legally Defined Age Category | Simplified Category | Enumerated Value |
|---|---|---|
| Child (Under 13) | Child | 1 |
| Young Teenager (13-15) | Teen | 2 |
| Older Teenager (16-17) | Teen | 2 |
| Adult (18+) | Adult | 3 |
| Unknown | Unknown | 0 |
None.
If you'd like to activate user syncs through APS, you must activate iframe syncing.
window.pbjs.que.push(function () {
window.pbjs.setConfig({
userSync: {
filterSettings: {
iframe: {
bidders: ['aps'],
filter: 'include',
},
},
},
});
});