UNPKG

mk9-prebid

Version:

Header Bidding Management Library

23 lines (18 loc) 778 B
# ID Import Library ## Configuration Options | Parameter | Required | Type | Default | Description | | :--------- | :------- | :------ | :------ | :---------- | | `target` | Yes | String | N/A | ID attribute of the element from which the email can be read. | | `url` | Yes | String | N/A | URL endpoint used to post the hashed email and user IDs. | | `debounce` | No | Number | 250 | Time in milliseconds before the email and IDs are fetched. | | `fullscan` | No | Boolean | false | Enable/disable a full page body scan to get email. | ## Example ```javascript pbjs.setConfig({ idImportLibrary: { target: 'username', url: 'https://example.com', debounce: 250, fullscan: false, }, });