Skip to content

Commit

Permalink
cid is number
Browse files Browse the repository at this point in the history
  • Loading branch information
eknis committed Aug 18, 2021
1 parent 954a465 commit ac09a83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dev-docs/modules/userId.md
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ The Intimate Merger privacy policy is at https://corp.intimatemerger.com/privacy
| --- | --- | --- | --- | --- |
| name | Required | String | The name of this module. | `"imuid"` |
| params | Required | Object | Details of module params. | |
| params.cid | Required | String | This is the Customer ID value obtained via Intimate Merger. | `5126` |
| params.cid | Required | Number | This is the Customer ID value obtained via Intimate Merger. | `5126` |
| params.url | Optional | String | Use this to change the default endpoint URL. | `"https://example.com/some/api"` |

#### IM-UID Example
Expand All @@ -823,9 +823,9 @@ The Intimate Merger privacy policy is at https://corp.intimatemerger.com/privacy
pbjs.setConfig({
userSync: {
userIds: [{
name: "imuid"
name: "imuid",
params: {
5126 // Set your Intimate Merger Customer ID here for production
cid: 5126 // Set your Intimate Merger Customer ID here for production
}
}]
}
Expand Down

0 comments on commit ac09a83

Please sign in to comment.