Get Machines of Tenant (v2.3)
GET/v2.3/api/tenants/:tenant_id/clients/:client_id/machines
List all the machines of a tenant.
Request
Path Parameters
tenant_id stringrequired
The tenant ID.
client_id stringrequired
The client ID.
Responses
- 200
- 400
Successful Operation
- application/json
- Schema
- Example (from schema)
Schema
count int32
The actual count.
id string
The ID.
tenant_id string
The tenant ID.
items object[]
{
"count": 0,
"id": "string",
"tenant_id": "string",
"items": [
{}
]
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
- Array [
- ]
_error ErrorResponse[]
code string
The error code.
message string
The error message.
{
"_error": [
{
"code": "string",
"message": "string"
}
]
}
{
"value": {
"_error": [
{
"code": "TENANT_REGION_ASSOCIATION_NOT_FOUND"
},
{
"code": "INVALID_ESP_CLIENT"
}
]
}
}
Loading...