- Retrieve the browser extension blocking configuration
Replace the browser extension blocking configuration
Retrieve the browser exte...
Returns your organization's current browser extension blocking 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
curl -i -X GET \
https://api.pushsecurity.com/v1/controls/browserExtensionBlocking/configuration \
-H 'x-api-key: YOUR_API_KEY_HERE'Response
{ "globals": {}, "rules": [ { "id": "c478966c-f927-411c-b919-179832d3d50c", "name": "Block risky extensions for Finance", "enabled": true, "mode": "BLOCK", "title": "Extension blocked", "subtext": "This extension is not permitted on company devices.", "criteria": { "employeeIds": { "matches": [ … ] }, "employeeGroups": { "matches": [ … ] }, "browserExtensionProfile": { "matches": [ … ] }, "browserExtensions": { "matches": [ … ] }, "browserExtensionPermissions": { "matches": [ … ] }, "browserExtensionDeploymentType": { "matches": [ … ] } } } ] }