- Retrieve the password logging prevention configuration
Replace the password logging prevention configuration
Retrieve the password log...
Returns your organization's current password logging prevention configuration, including every rule and its settings. Rules are returned in the order they're evaluated, with the highest-priority rule first.
Security
x-api-key
- https://api.pushsecurity.comhttps://api.pushsecurity.com/v1/controls/passwordLoggingPrevention/configuration
curl -i -X GET \
https://api.pushsecurity.com/v1/controls/passwordLoggingPrevention/configuration \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "globals": {}, "rules": [ { "id": "c478966c-f927-411c-b919-179832d3d50c", "name": "Prevent password logging for Finance", "enabled": true, "mode": "BLOCK", "title": "Password entry blocked", "subtext": "Entering your password on this app is not permitted.", "criteria": { "employeeIds": { "matches": [ … ] }, "employeeGroups": { "matches": [ … ] }, "appTypes": { "matches": [ … ] }, "appLabels": { "matches": [ … ] }, "appCategories": { "matches": [ … ] }, "approvalStatuses": { "matches": [ … ] }, "sensitivityLevels": { "matches": [ … ] } } } ] }