IM-UID is a universal identifier provided by Intimate Merger. The integration of IM-UID into Prebid.js consists of this module.
First, make sure to add the Intimate Merger submodule to your Prebid.js package with:
gulp build --modules=imuIdSystem,userId
The following configuration parameters are available:
pbjs.setConfig({
userSync: {
ppid: 'ppid.intimatemerger.com', // GAM Publisher Provided id support
userIds: [{
name: 'imuid',
params: {
cid: 5126 // Set your Intimate Merger Customer ID here for production
}
}]
}
});
Param under userSync.userIds[] | Scope | Type | Description | Example |
---|---|---|---|---|
name | Required | String | The name of this module. | "imuid" |
params | Required | Object | Details of module params. | |
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" |