Web application configuration API - GET data privacy of all web applications
Gets data privacy parameters of all web applications configured in your Dynatrace environment.
This API only supports web applications (including agentless applications and browser extensions). Mobile apps, AMP applications and custom applications are not supported.
The request produces an application/json
payload.
GET |
|
Authentication
To execute this request, you need the Read configuration (ReadConfig
) permission assigned to your API token. To learn how to obtain and use it, see Tokens and authentication.
Parameters
The request doesn't provide any configurable parameters.
Response
Response codes
Code | Description |
---|---|
200 | Success |
Response body
The ApplicationDataPrivacyList object
Element | Type | Description |
---|---|---|
metadata | ConfigurationMetadata | |
values | ApplicationDataPrivacy[] |
The ApplicationDataPrivacy object
Data privacy settings of the application.
Element | Type | Description |
---|---|---|
metadata | ConfigurationMetadata | |
identifier | string | Dynatrace entity ID of the web application. |
dataCaptureOptInEnabled | boolean | Set to |
persistentCookieForUserTracking | boolean | Set to |
doNotTrackBehaviour | string | How to handle browsers' "Do Not Track": |
The ConfigurationMetadata object
Metadata useful for debugging
Element | Type | Description |
---|---|---|
configurationVersions | integer[] | A Sorted list of the version numbers of the configuration. |
currentConfigurationVersions | string[] | A Sorted list of string version numbers of the configuration. |
clusterVersion | string | Dynatrace server version. |
{
"metadata": {
"configurationVersions": [
"integer"
],
"currentConfigurationVersions": [
"string"
],
"clusterVersion": "1.192.1"
},
"values": [
{
"metadata": {
"configurationVersions": [
"integer"
],
"currentConfigurationVersions": [
"string"
],
"clusterVersion": "1.192.1"
},
"identifier": "string",
"dataCaptureOptInEnabled": true,
"persistentCookieForUserTracking": true,
"doNotTrackBehaviour": "CAPTURE_ANONYMIZED"
}
]
}