diff --git a/dev-docs/publisher-api-reference/setConfig.md b/dev-docs/publisher-api-reference/setConfig.md index 801b453c6b..46109a3672 100644 --- a/dev-docs/publisher-api-reference/setConfig.md +++ b/dev-docs/publisher-api-reference/setConfig.md @@ -153,6 +153,18 @@ Prebid core adds a timeout on XMLHttpRequest request to terminate the request on pbjs.setConfig({ disableAjaxTimeout: true }); ``` +### Disabling Fingerprinting APIs + + + +You can disable specific browser fingerprinting APIs that Prebid may use by passing an array of API names to `disableFingerprintingApis`. This can help with privacy or compatibility in environments where certain APIs are restricted or undesirable. + +```javascript +pbjs.setConfig({ + disableFingerprintingApis: ['devicepixelratio', 'webdriver', 'resolvedOptions'] +}); +``` + ### Set TTL Buffer