- Replace the browser extension blocking configuration
Retrieve the browser extension blocking configuration
Replace the browser exten...
Replaces your organization's browser extension blocking configuration with the configuration you send. Any rule you don't include is deleted.
A rule with an id updates the existing rule with that id. A rule without an id is created. Rules are evaluated in the order you send them, and the first rule that matches wins.
To change part of the configuration, retrieve it first, apply your changes, and send the complete configuration back.
Security
x-api-key
PUT
- Remove all rules
- Block matching extensions for the Finance group
curl -i -X PUT \
https://api.pushsecurity.com/v1/controls/browserExtensionBlocking/configuration \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"globals": {},
"rules": []
}'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": [ … ] } } } ] }