Skip to content

Latest commit

 

History

History
43 lines (35 loc) · 1.92 KB

amxIdSystem.md

File metadata and controls

43 lines (35 loc) · 1.92 KB

AMX ID

For help adding this module, please contact [email protected].

Prebid Configuration

You can configure this module in your userSync.userIds[] configuration:

pbjs.setConfig({
  userSync: {
    userIds: [
      {
        name: "amxId",
        storage: {
          name: "amxId",
          type: "html5",
          expires: 14,
        },
        params: {
          tagId: "cHJlYmlkLm9yZw",
        },
      },
    ],
  },
});
Param under userSync.userIds[] Scope Type Description Example
name Required string ID for the amxId module "amxId"
storage Optional Object Settings for amxId storage See storage settings
params Optional Object Parameters for amxId module See params

Storage Settings

The following settings are suggested for the storage property in the userSync.userIds[] object:

Param under storage Type Description Example
name String Where the ID will be stored "amxId"
type String For best performance, this should be "html5" "html5"
expires Number <= 30 number of days until the stored ID expires. Must be less than or equal to 30 14