Skip to main content
GET
/
systems
/
{id}
Get Individual System
curl --request GET \
  --url https://{host}/systems/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "<string>",
  "href": "<string>",
  "resource_id": "<string>",
  "type": "host",
  "platform": "VMWARE",
  "platform_model": "<string>",
  "total_physical_cpus": "<string>",
  "total_logical_cpus": "<string>",
  "cores_per_cpu": "<string>",
  "threads_per_core": "<string>",
  "memory": "<string>",
  "parent": "<string>",
  "children": "<string>",
  "manufacturer": "<string>",
  "os": "<string>",
  "os_patch_level": "<string>",
  "os_version": "<string>",
  "ip_address": "<string>",
  "mac_address": "<string>",
  "entity_role_name": "<string>",
  "entity_type": "<string>",
  "control_environment": {
    "id": "<string>",
    "name": "<string>",
    "platform_category": "External Cloud",
    "href": "<string>",
    "icon": "<string>"
  },
  "infrastructure_group": {
    "id": "<string>",
    "name": "<string>",
    "href": "<string>"
  },
  "cpu_benchmarks": [
    {
      "name": "CINT2000",
      "score_type": "cint2000",
      "value": 123
    }
  ],
  "I/O_benchmarks": [
    {
      "name": "Maximum Disk Throughput (bytes/s)",
      "score_type": "disk",
      "value": 123
    }
  ],
  "attributes": [
    {
      "id": "<string>",
      "name": "<string>",
      "value": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Densify unique system ID

Query Parameters

details
boolean
default:false

Include extra details for applicable elements (e.g., children, manufacturer, os)

Response

System

A discovered system

id
string
required

Densify unique system ID

name
string
required
href
string
required
resource_id
string

Cloud/provider unique ID (when applicable)

type
enum<string>

System type

Available options:
host,
guest,
vm,
arm_vm,
classic_vm,
rds,
asg,
ecs_svc
platform
enum<string>

System platform

Available options:
VMWARE,
HMC,
AWS,
GCP,
AZURE,
CONTAINERS
platform_model
string

Host model (hosts) or instance type (cloud instances)

total_physical_cpus
string

Secondary sort key for sort_by=size

total_logical_cpus
string
cores_per_cpu
string

Tertiary sort key for sort_by=size

threads_per_core
string
memory
string

Normalized total memory (MB). Primary sort key within size

parent
string

Parent host name for VMs; "N/A" for hosts

children
string

Number of child systems (returned when details=true and applicable)

manufacturer
string

Returned when details=true

os
string

Returned when details=true

os_patch_level
string
os_version
string
ip_address
string
mac_address
string
entity_role_name
string

Role derived from platform/role (e.g., VMWARE_VM)

entity_type
string

Entity type derived from platform/system type

control_environment
object
infrastructure_group
object
cpu_benchmarks
object[]
I/O_benchmarks
object[]
attributes
object[]