| Method | URI | Description |
|---|---|---|
| GET | /v2/{tenant_id}/os-hypervisors/{hypervisor_hostname}/servers | Lists instances that belong to specific hypervisors. |
Normal response codes: 200
This table shows the URI parameters for the list instances for hypervisors request:
| Name | Type | Description |
|---|---|---|
| String | The ID for the tenant or account in a multi-tenancy cloud. |
| String | The name of the host that runs the hypervisor. |
This operation does not require a request body.
Example 3.237. List instances for hypervisors: JSON response
{
"hypervisors": [
{
"hypervisor_hostname": "fake-mini",
"id": 1
}
]
}Example 3.238. List instances for hypervisors: XML response
<?xml version='1.0' encoding='UTF-8'?>
<hypervisors>
<hypervisor id="1" hypervisor_hostname="fake-mini">
<servers/>
</hypervisor>
</hypervisors>This operation does not return a response body.

