Skip to content

Commit

Permalink
indicate ortb blocking support, add bidder settings section (prebid#4801
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nickjacob authored and ecdrsvc committed Sep 6, 2023
1 parent c30aa0e commit a68dbc7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 20 deletions.
21 changes: 11 additions & 10 deletions dev-docs/bidders/amx-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ pbs: true
pbs_app_supported: true
fpd_supported: true
multiformat_supported: true
ortb_blocking_supported: true
gpp_supported: true
gvl_id: 737
sidebarType: 1
Expand All @@ -24,11 +25,11 @@ sidebarType: 1
### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
| Name | Scope | Description | Example | Type |
|-------------|----------|-----------------------------------------------------------------|---------------------------------|----------|
| `tagId` | required | Tag ID | `'cHJlYmlkLm9yZw'` | `string` |
| `testMode` | optional | Activate 100% fill ads | `true` | `boolean`|
| `adUnitId` | optional | Ad Unit ID used in reporting. Will default to `bid.adUnitCode` | `'sticky_banner'` | `string` |
| `tagId` | required | Tag ID | `'cHJlYmlkLm9yZw'` | `string` |
| `testMode` | optional | Activate 100% fill ads | `true` | `boolean`|
| `adUnitId` | optional | Ad Unit ID used in reporting. Will default to `bid.adUnitCode` | `'sticky_banner'` | `string` |

### Test Parameters

Expand Down Expand Up @@ -67,14 +68,14 @@ pbjs.setBidderConfig({
sectioncat: ["IAB2-1"],
pagecat: ["IAB2-22"],
content: {
context: 5
}
context: 5,
},
},
user: {
yob: 1981,
keywords: "kw3",
}
}
}
})
},
},
},
});
```
35 changes: 25 additions & 10 deletions dev-docs/bidders/amx.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ description: AMX RTB Bid Adapter
hide: true
schain_supported: true
tcfeu_supported: true
floors_supported: true
usp_supported: true
coppa_supported: true
userIds: all
Expand All @@ -16,18 +17,32 @@ pbs: false
fpd_supported: true
gpp_supported: true
multiformat_supported: true
ortb_blocking_supported: true
gvl_id: 737
sidebarType: 1
---

### Bid Params

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
| Name | Scope | Description | Example | Type |
|-------------|----------|-----------------------------------------------------------------|---------------------------------|----------|
| `tagId` | required | Tag ID | `'cHJlYmlkLm9yZw'` | `string` |
| `testMode` | optional | Activate 100% fill ads | `true` | `boolean`|
| `adUnitId` | optional | Ad Unit ID used in reporting. Will default to `bid.adUnitCode` | `'sticky_banner'` | `string` |
| `tagId` | required | Tag ID | `'cHJlYmlkLm9yZw'` | `string` |
| `testMode` | optional | Activate 100% fill ads | `true` | `boolean`|
| `adUnitId` | optional | Ad Unit ID used in reporting. Will default to `bid.adUnitCode` | `'sticky_banner'` | `string` |

### Bidder Settings

The AMX RTB bid adapter uses local storage. Please add `storageAllowed` in your bidder settings:

```js
// https://docs.prebid.org/dev-docs/publisher-api-reference/bidderSettings.html
pbjs.bidderSettings = {
amx: {
storageAllowed: true,
},
};
```

### Test Parameters

Expand Down Expand Up @@ -66,14 +81,14 @@ pbjs.setBidderConfig({
sectioncat: ["IAB2-1"],
pagecat: ["IAB2-22"],
content: {
context: 5
}
context: 5,
},
},
user: {
yob: 1981,
keywords: "kw3",
}
}
}
})
},
},
},
});
```

0 comments on commit a68dbc7

Please sign in to comment.