diff --git a/.sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc b/.sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc new file mode 100644 index 0000000000..6db4f74c3a Binary files /dev/null and b/.sass-cache/a8ae1fbf8fe3cf0ae44282e4f927a25624204c54/main.scssc differ diff --git a/dev-docs/bidders/adnuntius.md b/dev-docs/bidders/adnuntius.md index 20278812e0..cdb2766ccd 100644 --- a/dev-docs/bidders/adnuntius.md +++ b/dev-docs/bidders/adnuntius.md @@ -5,29 +5,26 @@ description: Prebid Adnuntius Bidder Adaptor pbjs: true biddercode: adnuntius media_types: banner -gdpr_supported: false +gdpr_supported: true --- - ### Bid Params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | +| Name | Scope | Description | Example | Type | |-------------|----------|----------------------------------------------------------------------|----------|----------| -| `auId` | required | The ad unit ID `'0000000000072345'` leading zeros can be omitted. | `string` | | -| `network` | optional | Used if you want to make requests to multiple networks in adnuntius. | `string` | | -| `targeting` | optional | Targeting to be sent through to adnuntius with the request. | `string` | | - - +| `auId` | required | The ad unit ID `'0000000000072345'` leading zeros can be omitted. | `'0000000000072345'` | `string` | +| `network` | optional | Used if you want to make requests to multiple networks in adnuntius. | `'adnuntius'` | `string`| +| `targeting` | optional | Targeting to be sent through to adnuntius with the request. | `{ c: ['prebids'] }` | `string`| #### Targeting The [Adnuntius Documentation](https://docs.adnuntius.com/adnuntius-advertising/requesting-ads/intro) provides detailed information on sending targeting data to the Adnuntius adserver. - #### Example Here's an example of sending targeting information about categories to adnuntius via the bid request: + ``` { code: "0000000000072345", @@ -50,3 +47,29 @@ Here's an example of sending targeting information about categories to adnuntius ] } ``` + +### Sending segments to the ad server + +There's an option to send segment id in the bidder config that will be picked up and sent to the ad server. Below is an example on how to do this: + +``` + + pbjs.setBidderConfig({ + bidders: ['adnuntius', 'bidderB'], + config: { + ortb2: { + user: { + data: [{ + name: "adnuntius", + segment: [ + { id: "1" }, + { id: "2" } + ] + }] + } + } + } + }); + +ยดยดยด +```