{ "opencollection": "1.0.0", "info": { "name": "Turbonomic REST Actions Groups API", "version": "v3" }, "items": [ { "info": { "name": "Groups", "type": "folder" }, "items": [ { "info": { "name": "Get All Groups", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/groups", "params": [ { "name": "group_type", "value": "", "type": "query", "description": "Filter by group type" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve all entity groups defined in the Turbonomic environment." }, { "info": { "name": "Create Group", "type": "http" }, "http": { "method": "POST", "url": "https://{turbonomic_host}/api/v3/groups", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new entity group for scoped policy application and reporting." }, { "info": { "name": "Get Group By UUID", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/groups/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the group" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a specific entity group by its unique identifier." }, { "info": { "name": "Update Group", "type": "http" }, "http": { "method": "PUT", "url": "https://{turbonomic_host}/api/v3/groups/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the group" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update an existing entity group." }, { "info": { "name": "Delete Group", "type": "http" }, "http": { "method": "DELETE", "url": "https://{turbonomic_host}/api/v3/groups/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the group" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Delete an entity group." } ] } ], "bundled": true }