Returns the current privacy settings, including element blocks, ajax watches, etc.
Method: GET
URI: /settings/recording/v1/privacy
Request Headers
Authorization: Basic {YOUR_API_KEY}
Status Codes
200
: A successful response.
GET https://api.fullstory.com/settings/recording/v1/privacy
curl -X GET \
https://api.fullstory.com/settings/recording/v1/privacy \
-H 'content-type: application/json' \
-H 'Authorization: Basic {YOUR_API_KEY}'
{
"elementBlocks": [
{
"selector": "input[type=password]",
"consent": false,
"notes": "",
"type": "BLOCK_EXCLUDE",
"scope": "ALL_SESSIONS",
"lastUpdated": "0001-01-01T00:00:00Z",
"label": "",
"targetingConditions": null,
"editable": "EDITABLE_DESCRIPTION_ONLY",
"exceptionSelectors": [],
"groupId": 0
}
],
"ajaxWatches": [
{
"urlRegex": "/session\\?.*",
"recordReq": "ELIDE",
"recordRsp": "WHITELIST",
"whitelistReq": "",
"whitelistRsp": ""
},
{
"urlRegex": "/highlights/share.*",
"recordReq": "ELIDE",
"recordRsp": "WHITELIST",
"whitelistReq": "",
"whitelistRsp": ""
}
],
"discardIpAddresses": false,
"metadata": {
"lastUpdated": "2021-06-03T14:57:32.623593Z",
"lastUpdatedBy": "bob@example.com",
"created": "2020-09-30T18:49:27.391Z",
"createdBy": "bob@example.com"
},
"defaultPrivacyMode": "PRIVACY_MODE_OFF",
"elementRuleGroups": {}
}