Web application configuration API - PUT data privacy of the default application
Updates the data privacy parameters of the default web application of your Dynatrace environment.
The request consumes an application/json
payload.
PUT | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/config/v1/applications/web/default/dataPrivacy |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/web/default/dataPrivacy | |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/applications/web/default/dataPrivacy |
Authentication
To execute this request, you need an access token with DataPrivacy
scope.
To learn how to obtain and use it, see Tokens and authentication.
Parameters
Parameter | Type | Description | In | Required |
---|---|---|---|---|
body | ApplicationDataPrivacy | JSON body of the request, containing new data privacy settings. | body | optional |
Request body objects
The ApplicationDataPrivacy
object
Data privacy settings of the application.
Element | Type | Description | Required |
---|---|---|---|
dataCaptureOptInEnabled | boolean | Set to | required |
doNotTrackBehaviour | string | How to handle the "Do Not Track" header:
| required |
identifier | string | Dynatrace entity ID of the web application. | optional |
metadata | ConfigurationMetadata | Metadata useful for debugging | optional |
persistentCookieForUserTracking | boolean | Set to | required |
sessionReplayDataPrivacy | SessionReplayDataPrivacySettings | Data privacy settings for Session Replay. | optional |
The ConfigurationMetadata
object
Metadata useful for debugging
Element | Type | Description | Required |
---|---|---|---|
clusterVersion | string | Dynatrace version. | optional |
configurationVersions | integer[] | A sorted list of the version numbers of the configuration. | optional |
currentConfigurationVersions | string[] | A sorted list of version numbers of the configuration. | optional |
The SessionReplayDataPrivacySettings
object
Data privacy settings for Session Replay.
Element | Type | Description | Required |
---|---|---|---|
contentMaskingSettings | SessionReplayContentMaskingSettings | Content masking settings for Session Replay. For more details, see Configure Session Replay in Dynatrace Documentation. | optional |
optInModeEnabled | boolean | If | optional |
urlExclusionRules | string[] | A list of URLs to be excluded from recording. | optional |
The SessionReplayContentMaskingSettings
object
Content masking settings for Session Replay.
For more details, see Configure Session Replay in Dynatrace Documentation.
Element | Type | Description | Required |
---|---|---|---|
playbackMaskingSettings | SessionReplayMaskingSetting | Configuration of the Session Replay masking. | optional |
recordingMaskingSettings | SessionReplayMaskingSetting | Configuration of the Session Replay masking. | optional |
recordingMaskingSettingsVersion | integer | The version of the content masking. You can use this API only with the version 2. If you're using version 1, set this field to | required |
The SessionReplayMaskingSetting
object
Configuration of the Session Replay masking.
Element | Type | Description | Required |
---|---|---|---|
maskingPreset | string | The type of the masking:
| required |
maskingRules | MaskingRule[] | A list of masking rules. | optional |
The MaskingRule
object
The masking rule defining how data is hidden.
Element | Type | Description | Required |
---|---|---|---|
maskingRuleType | string | The type of the masking rule.
| required |
selector | string | The selector for the element or the attribute to be masked. Specify a CSS expression for an element or a regular expression for an attribute. | required |
userInteractionHidden | boolean | Interactions with the element are ( | required |
Request body JSON model
This is a model of the request body, showing the possible elements. It has to be adjusted for usage in an actual request.
1{2 "dataCaptureOptInEnabled": true,3 "doNotTrackBehaviour": "CAPTURE_ANONYMIZED",4 "identifier": "string",5 "metadata": {6 "clusterVersion": "1.192.1",7 "configurationVersions": [8 4,9 210 ],11 "currentConfigurationVersions": [12 "1.0.4",13 "1.23"14 ]15 },16 "persistentCookieForUserTracking": true,17 "sessionReplayDataPrivacy": {18 "contentMaskingSettings": {19 "playbackMaskingSettings": {20 "maskingPreset": "ALLOW_LIST",21 "maskingRules": [22 {23 "maskingRuleType": "ATTRIBUTE",24 "selector": "string",25 "userInteractionHidden": false26 }27 ]28 },29 "recordingMaskingSettings": {},30 "recordingMaskingSettingsVersion": 231 },32 "optInModeEnabled": true,33 "urlExclusionRules": [34 "string"35 ]36 }37}
Response
Response codes
Code | Type | Description |
---|---|---|
204 | - | Success. Data privacy settings have been updated. Response doesn't have a body. |
400 | ErrorEnvelope | Failed. The input is invalid. |
Validate payload
We recommend that you validate the payload before submitting it with an actual request. A response code of 204 indicates a valid payload.
The request consumes an application/json
payload.
POST | ManagedDynatrace for Government | https://{your-domain}/e/{your-environment-id}/api/config/v1/applications/web/default/dataPrivacy/validator |
SaaS | https://{your-environment-id}.live.dynatrace.com/api/config/v1/applications/web/default/dataPrivacy/validator | |
Environment ActiveGate | https://{your-activegate-domain}:9999/e/{your-environment-id}/api/config/v1/applications/web/default/dataPrivacy/validator |
Authentication
To execute this request, you need an access token with DataPrivacy
scope.
To learn how to obtain and use it, see Tokens and authentication.
Response
Response codes
Code | Type | Description |
---|---|---|
204 | - | Validated. The submitted configuration is valid. Response does not have a body. |
400 | ErrorEnvelope | Failed. The input is invalid. |