- Retrieve the malicious browser extension detection configuration
Replace the malicious browser extension detection configuration
Retrieve the malicious br...
Returns your organization's current malicious browser extension detection configuration, including the control-wide globals and 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
curl -i -X GET \
https://api.pushsecurity.com/v1/controls/maliciousBrowserExtensionDetection/configuration \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "globals": { "excludedExtensions": [ { "extensionId": "abcdefghijklmnopabcdefghijklmnop", "notes": "Approved by IT for the Finance team." } ] }, "rules": [ { "id": "c478966c-f927-411c-b919-179832d3d50c", "name": "Block high-severity extensions for Finance", "enabled": true, "mode": "BLOCK", "title": "Extension blocked", "subtext": "This extension is not permitted on company devices.", "profileScope": "COMPANY_DOMAIN", "criteria": { "employeeIds": { "matches": [ … ] }, "employeeGroups": { "matches": [ … ] }, "browserExtensionSeverities": { "matches": [ … ] } } } ] }