builtin:sessionreplay.web.privacy-preferences)
Configure Session Replay to restrict data capture and protect your end users' data privacy.
Schema ID | Schema groups | Scope |
---|---|---|
builtin:sessionreplay.web.privacy-preferences |
| APPLICATION - Web applicationenvironment |
GET | Managed | https://{your-domain}/e/{your-environment-id}/api/v2/settings/schemas/builtin:sessionreplay.web.privacy-preferences |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/v2/settings/schemas/builtin:sessionreplay.web.privacy-preferences | |
Environment ActiveGate | https://{your-activegate-domain}/e/{your-environment-id}/api/v2/settings/schemas/builtin:sessionreplay.web.privacy-preferences |
To execute this request, you need an access token with Read settings (settings.read
) scope. To learn how to obtain and use it, see Tokens and authentication.
Property | Type | Description | Required |
---|---|---|---|
Enable opt-in mode for Session ReplayenableOptInMode | boolean | When Session Replay opt-in mode is turned on, Session Replay is deactivated until explicitly activated via an API call. | required |
URL exclusionurlExclusionPatternList | set | Exclude webpages or views from Session Replay recording by adding URL exclusion rules | required |
Content masking preferencesmaskingPresets | MaskingPresetConfig | To protect your end users' privacy, select or customize predefined masking options that suit your content recording and playback requirements. | required |
MaskingPresetConfig
objectProperty | Type | Description | Required |
---|---|---|---|
Recording masking settingsrecordingMaskingPreset | enum | Recording masking settings are applied at record time. When you set these settings to a more restrictive option, the same option is also enabled for the playback masking settings.
| required |
Allow list rulesrecordingMaskingAllowListRules | Set<AllowListRule> | The elements are defined by the CSS selector or attribute name. | required |
Block list rulesrecordingMaskingBlockListRules | Set<BlockListRule> | The elements are defined by the CSS selector or attribute name. | required |
Playback masking settingsplaybackMaskingPreset | enum | Playback masking settings are applied during playback of recorded sessions, including playback of sessions that were recorded before these settings were applied.
| required |
Allow list rulesplaybackMaskingAllowListRules | Set<AllowListRule> | The elements are defined by the CSS selector or attribute name. | required |
Block list rulesplaybackMaskingBlockListRules | Set<BlockListRule> | The elements are defined by the CSS selector or attribute name. | required |
AllowListRule
objectProperty | Type | Description | Required |
---|---|---|---|
Targettarget | enum | Choose the masking rule target type
| required |
CSS selector to identify the content elementcssExpression | text | Content masking can be applied to webpages where personal data is displayed. When content masking is applied to parent elements, all child elements are masked by default. | required |
Attribute name (expression)attributeExpression | text | Attribute masking can be applied to web applications that store data within attributes, typically data-NAME attributes in HTML5. When you define attributes, their values are masked while recording but not removed. | required |
BlockListRule
objectProperty | Type | Description | Required |
---|---|---|---|
Targettarget | enum | Choose the masking rule target type
| required |
CSS selector to identify the content elementcssExpression | text | Content masking can be applied to webpages where personal data is displayed. When content masking is applied to parent elements, all child elements are masked by default. | required |
Attribute name (expression)attributeExpression | text | Attribute masking can be applied to web applications that store data within attributes, typically data-NAME attributes in HTML5. When you define attributes, their values are masked while recording but not removed. | required |
Hide user interactionhideUserInteraction | boolean | Hide user interactions with these elements, including clicks that expand elements, highlighting that results from hovering a cursor over an option, and selection of specific form options. | required |