{ "opencollection": "1.0.0", "info": { "name": "OpenSearch Security Plugin REST Account Action Groups API", "version": "2.x" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Action Groups", "type": "folder" }, "items": [ { "info": { "name": "List all action groups", "type": "http" }, "http": { "method": "GET", "url": "https://{cluster-host}:9200/_plugins/_security/api/actiongroups" }, "docs": "List all action groups" }, { "info": { "name": "Get action group", "type": "http" }, "http": { "method": "GET", "url": "https://{cluster-host}:9200/_plugins/_security/api/actiongroups/:name", "params": [ { "name": "name", "value": "", "type": "path" } ] }, "docs": "Get action group" }, { "info": { "name": "Create or replace an action group", "type": "http" }, "http": { "method": "PUT", "url": "https://{cluster-host}:9200/_plugins/_security/api/actiongroups/:name", "params": [ { "name": "name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Create or replace an action group" }, { "info": { "name": "Patch action group", "type": "http" }, "http": { "method": "PATCH", "url": "https://{cluster-host}:9200/_plugins/_security/api/actiongroups/:name", "params": [ { "name": "name", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Patch action group" }, { "info": { "name": "Delete action group", "type": "http" }, "http": { "method": "DELETE", "url": "https://{cluster-host}:9200/_plugins/_security/api/actiongroups/:name", "params": [ { "name": "name", "value": "", "type": "path" } ] }, "docs": "Delete action group" } ] } ], "bundled": true }