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

Renamed cpexId to czechAdId #4286

Merged
merged 1 commit into from
Jun 15, 2023
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ Bidders that want to support the User ID module in Prebid.js need to update thei
| AudienceOne ID | DAC | dacId | dac.co.jp | {"id": "1111"} |
| DeepIntent ID | Deep Intent | deepintentId | deepintent.com | "1111" |
| DMD ID | DMD | dmdId | hcn.health | "1111" |
| CpexID | CPEx | cpexId | cpex.cz | "1111" |
| Czech Ad ID | czechAdId | czechAdId | czechadid.cz | "1111" |
| CriteoID | Criteo | criteoId | criteo.com | "1111" |
| Fabrick ID | Neustar | fabrickId | neustar.biz | "1111" |
| FLoC ID | n/a | flocId | | |
Expand Down
19 changes: 9 additions & 10 deletions dev-docs/modules/userid-submodules/cpexid.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,29 @@
---
layout: userid
title: Czech Publisher Exchange ID (CPExID)
description: Czech Publisher Exchange ID (CPExID) User ID sub-module
useridmodule: cpexIdSystem
title: Czech Ad ID (czechAdId)
description: Czech Ad ID (czechAdId) User ID sub-module
useridmodule: czechAdIdSystem
---


CPExID is provided by [Czech Publisher Exchange](https://www.cpex.cz/), or CPEx. It is a user ID for ad targeting by using first party cookie, or localStorage mechanism. Please contact CPEx before using this ID.
Czech Ad ID is a joint project of publishers of the [CPEx alliance](https://www.cpex.cz/) and [Seznam.cz](https://www.seznam.cz). It is a deterministic user ID that offers cross-domain and cross-device identification. For more information see [czechadid.cz](https://www.czechadid.cz)).

{: .alert.alert-info :}
gulp build --modules=cpexIdSystem
gulp build --modules=czechAdIdSystem

## CPExId Configuration
## czechAdId Configuration

{: .table .table-bordered .table-striped }
| Param under userSync.userIds[] | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| name | Required | String | The name of this module | `"cpexId"` |
| name | Required | String | The name of this module | `"czechAdId"` |

## CPExId Example
## czechAdId Example

{% highlight javascript %}
pbjs.setConfig({
userSync: {
userIds: [{
name: 'cpexId'
name: 'czechAdId'
}]
}
});
Expand Down