Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

useBaseGvlid added to aliasBidder #5601

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
9 changes: 5 additions & 4 deletions dev-docs/publisher-api-reference/aliasBidder.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To define an alias for a bidder adapter, call this method at runtime:

```javascript

pbjs.aliasBidder('appnexus', 'newAlias', optionsObject );
pbjs.aliasBidder('appnexus', 'newAlias', optionsObject);

```

Expand All @@ -25,9 +25,10 @@ If you define an alias and are using `pbjs.sendAllBids`, you must also set up ad
The options object supports these parameters:

{: .table .table-bordered .table-striped }
| Option Parameter | Type | Description |
|------------|---------|---------------------------------|
| gvlid | integer | IAB Global Vendor List ID for this alias for use with the [TCF control module](/dev-docs/modules/tcfControl.html). |
| Option Parameter | Scope | Type | Description |
|------------|---------|---------|---------------------------------|
| gvlid | optional | integer | IAB Global Vendor List ID for this alias for use with the [TCF control module](/dev-docs/modules/tcfControl.html). |
| useBaseGvlid | optional | boolean | Flag determining if the GVL ID of the original adapter should be re-used |

{: .alert.alert-info :}
Creating an alias for a Prebid Server adapter is done differently. See 'extPrebid'
Expand Down