From 2786a1f88e692342a4aab76205bad652454908ae Mon Sep 17 00:00:00 2001 From: PavloMalashnyak <99171840+PavloMalashnyak@users.noreply.github.com> Date: Mon, 4 Mar 2024 16:04:04 +0200 Subject: [PATCH] BP-55: Implement Prebid Adapter - clarify bidderConfig params (#3) * BP-55: add clarification for config variables * BP-55: remove ab value from doc --- dev-docs/bidders/blockthrough.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/dev-docs/bidders/blockthrough.md b/dev-docs/bidders/blockthrough.md index 38504dcbf3..fbb9f4e845 100644 --- a/dev-docs/bidders/blockthrough.md +++ b/dev-docs/bidders/blockthrough.md @@ -37,7 +37,13 @@ Publishers should use the `ortb2` method of setting [First Party Data](https://d #### Bid Config -Make sure to set required ab, orgID, websiteID values received after approval using `pbjs.setBidderConfig`. +Make sure to set required orgID, websiteID values received after approval using `pbjs.setBidderConfig`. + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +| ----------- | -------- | ---------------------------------- | ------------------ | --------- | +| `orgID` | required | A unique ID for your organization provided by the Blockthrough team. | `4829301576428910` | `string` | +| `websiteID` | required | A unique ID for your site provided by the Blockthrough team. | `5654012389765432` | `string` | #### Example @@ -49,7 +55,6 @@ pbjs.setBidderConfig({ site: { ext: { blockthrough: { - ab: false, orgID: '4829301576428910', websiteID: '5654012389765432', },