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

Ceeid system userId module docs #5503

Merged
merged 19 commits into from
Jul 19, 2024
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
1 change: 1 addition & 0 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,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" |
| ceeId | ceeId | ceeId | ceeid.eu | "111111" |
| Czech Ad ID | czechAdId | czechAdId | czechadid.cz | "1111" |
| CriteoID | Criteo | criteoId | criteo.com | "1111" |
| Fabrick ID | Neustar | fabrickId | neustar.biz | "1111" |
Expand Down
13 changes: 6 additions & 7 deletions dev-docs/modules/userid-submodules/ceeIdSystem.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
---
layout: userid
title: CEE ID Module
description: CEE ID User ID sub-module
title: CEEIdSystem
description: CEEID User ID sub-module
useridmodule: ceeIdSystem
---

# ceeIdSystem UserID Module

## Prebid Configuration

First, make sure to add ceeIdSystem to your Prebid.js package with:
bretg marked this conversation as resolved.
Show resolved Hide resolved
Expand All @@ -15,11 +13,12 @@ First, make sure to add ceeIdSystem to your Prebid.js package with:
gulp build --modules=ceeIdSystem
```

## CEE ID Configuration
## CEEID Configuration

{: .table .table-bordered .table-striped }
| Param under userSync.userIds[] | Scope | Type | Description | Example |
| --- | --- | --- | --- | --- |
| name | Required | String | The name of CEE ID user ID module. | `"ceeId"` |
| name | Required | String | The name of CEEID user ID module. | `"ceeId"` |
| storage | Required | Object | Container of storage options. | |
| storage.type | Required | String | Type of storage to use | `"cookie"` |
| storage.name | Required | String | Name of storage to set | `"ceeIdToken"` |
Expand All @@ -29,7 +28,7 @@ gulp build --modules=ceeIdSystem
| params.tokenName | Required | String | Your custom name of token to read | `'myExampleTokenName'` |
| params.value | Optional | String | Optional param if you want to pass token value directly through setConfig | `'someTokenValue'` |

## CEE ID Examples
## CEEID Examples

You can configure this submodule in your `userSync.userIds[]` configuration. Publishers manage ceeIds themselves can store ceeIds in local storage or 1st party cookies. You can use your custom name of token to read

Expand Down