Skip to content

Password logging prevention

Manage the rules that prevent password logging across your organization.

Retrieve the password logging prevention configuration

Request

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
GET
/v1/controls/passwordLoggingPrevention/configuration
curl -i -X GET \
  https://api.pushsecurity.com/v1/controls/passwordLoggingPrevention/configuration \
  -H 'x-api-key: YOUR_API_KEY_HERE'

Responses

OK

Bodyapplication/json
rulesArray of objects(Password Logging Prevention Rule)required

Complete list of Password Logging Prevention rules.

globalsobject

Reserved for control-wide settings. Empty for this control.

Example:
{}
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": [] } } } ] }