Back to User ID Module

Jixie ID

Module jixieId
EID Source jixie.io
bidRequest.userId jixieId
Example "1111"

The Jixie ID module is specially useful for publishers that will connect with Jixie bidder through PrebidServer adapter feature of PrebidJS and/or for publishers that are unable to integrate with the Jixie ID/event script to still acquire the important Jixie client ID for users.

For assistance setting up your module, please contact us at

Add the Jixie ID to your Prebid.js Package with:

gulp build --modules=userId,jixieIdSystem

Jixie ID Registration

Please reach out to partners.jixie.io to request your accountid

Jixie ID Configuration

Param under userSync.userIds[] Scope Type Description Example
name Required String The name of Module "jixieId"
params optional Object Container of all module params.  
params.accountid optional String This is your accountid as provided by Jixie. Mo165qXxxx

DMD ID Example

pbjs.setConfig({
    userSync: {
        userIds: [{
            name: 'jixieId',
            params: {
                accountid: 'Mo165qXxxx' // provided to you by Jixie
            }
        }]
    }
});

Back to User ID Module