Data privacy API - GET configuration
Gets the global configuration of data privacy, affecting all your applications.
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 DataPrivacyAndSecurity object
Element | Type | Description |
---|---|---|
metadata | ConfigurationMetadata | |
maskIpAddressesAndGpsCoordinates | boolean | Mask IP addresses and GPS coordinates enabled/disabled. |
maskUserActionNames | boolean | Mask user action names (Web applications only) enabled/disabled. |
maskPersonalDataInUris | boolean | Mask personal data in URIs enabled/disabled. |
logAuditEvents | boolean | The audit logging is enabled ( |
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"
},
"maskIpAddressesAndGpsCoordinates": true,
"maskUserActionNames": true,
"maskPersonalDataInUris": true,
"logAuditEvents": true
}