{ "opencollection": "1.0.0", "info": { "name": "Turbonomic REST Actions Entities API", "version": "v3" }, "items": [ { "info": { "name": "Entities", "type": "folder" }, "items": [ { "info": { "name": "Get All Entities", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/entities", "params": [ { "name": "entity_type", "value": "", "type": "query", "description": "Filter by entity type (e.g., VirtualMachine, Container, Application)" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of entities to return" }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor for the next page of results" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve all entities in the Turbonomic environment. Entities include virtual machines, containers, applications, storage volumes, hosts, and other infrastructure components." }, { "info": { "name": "Get Entity By UUID", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/entities/:uuid", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the entity" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve a specific entity by its unique identifier." }, { "info": { "name": "Get Entity Actions", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/entities/:uuid/actions", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the entity" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve pending optimization actions for a specific entity." }, { "info": { "name": "Get Entity Statistics", "type": "http" }, "http": { "method": "GET", "url": "https://{turbonomic_host}/api/v3/entities/:uuid/stats", "params": [ { "name": "uuid", "value": "", "type": "path", "description": "The unique identifier of the entity" }, { "name": "start_date", "value": "", "type": "query", "description": "Start date for statistics (ISO 8601 format)" }, { "name": "end_date", "value": "", "type": "query", "description": "End date for statistics (ISO 8601 format)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Retrieve historical and projected resource utilization statistics for an entity." } ] } ], "bundled": true }