Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions dev-docs/modules/scope3RtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ pbjs.setConfig({
endpoint: "<https://prebid.scope3.com/prebid>",
timeout: 1500,
bidders: ["appnexus", "rubicon", "pubmatic"],
includeKey: "scope3_include",
excludeKey: "scope3_exclude",
macroKey: "scope3_macro",
includeKey: "axei",
excludeKey: "axex",
macroKey: "axem",
publisherTargeting: true,
advertiserTargeting: true,
cacheEnabled: true,
Expand All @@ -86,9 +86,9 @@ pbjs.setConfig({
| endpoint | String | No | API endpoint (default: `https://prebid.scope3.com/prebid`) |
| timeout | Number | No | Request timeout in milliseconds (default: 1000) |
| bidders | Array | No | List of bidders to target (default: all auction bidders) |
| includeKey | String | No | GAM targeting key for include signals (default: "scope3_include") |
| excludeKey | String | No | GAM targeting key for exclude signals (default: "scope3_exclude") |
| macroKey | String | No | GAM targeting key for macro data (default: "scope3_macro") |
| includeKey | String | No | GAM targeting key for include signals (default: "axei") |
| excludeKey | String | No | GAM targeting key for exclude signals (default: "axex") |
| macroKey | String | No | GAM targeting key for macro data (default: "axem") |
| publisherTargeting | Boolean | No | Enable publisher-level targeting (default: true) |
| advertiserTargeting | Boolean | No | Enable advertiser-level targeting (default: true) |
| cacheEnabled | Boolean | No | Enable response caching (default: true) |
Expand Down Expand Up @@ -126,29 +126,29 @@ Create GAM line items with key-value targeting using the configured keys:

**Include Targeting:**

* Key: `scope3_include` (or your configured includeKey)
* Key: `axei` (or your configured includeKey)
* Values: `sports_fan`, `auto_intender`, etc.
* Operator: "is any of"

**Exclude Targeting:**

* Key: `scope3_exclude` (or your configured excludeKey)
* Key: `axex` (or your configured excludeKey)
* Values: `competitor_exposed`, etc.
* Operator: "is none of"

**Macro Targeting:**

* Key: `scope3_macro` (or your configured macroKey)
* Key: `axem` (or your configured macroKey)
* Values: Base64-encoded contextual data

### Example Line Item Configuration

```text
Creative: 300x250 Banner
Targeting:
* scope3_include is any of "sports_fan", "auto_intender"
* scope3_exclude is none of "competitor_exposed"
* scope3_macro is "eyJjb250ZXh0IjogImhpZ2hfdmFsdWUifQ=="
* axei is any of "sports_fan", "auto_intender"
* axex is none of "competitor_exposed"
* acem is "eyJjb250ZXh0IjogImhpZ2hfdmFsdWUifQ=="
```

## Data Flow
Expand Down