GET /api/models
200
{
"total": 2,
"subtotal": 2,
"page": 1,
"per_page": 20,
"search": null,
"sort": {
"by": null,
"order": null
},
"results": [
{
"info": "Virtual Machine",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190962,
"name": "KVM",
"hosts_count": 0
},
{
"info": null,
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"vendor_class": "Sun-Fire-V210",
"hardware_model": "SUN4U",
"id": 139037058,
"name": "SUN V210",
"hosts_count": 0
}
]
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
search optional |
filter results Validations:
|
|
order optional |
Sort field and order, eg. ‘id DESC’ Validations:
|
|
page optional |
paginate results Validations:
|
|
per_page optional |
number of entries per request Validations:
|
| Field name | Type | Possible values |
|---|---|---|
| hardware_model | string | |
| info | text | |
| name | string | |
| vendor_class | string |
GET /api/models/980190962abcdef
200
{
"info": null,
"created_at": "2018-11-15 19:02:49 UTC",
"updated_at": "2018-11-15 19:02:49 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190963,
"name": "980190962abcdef",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
POST /api/models
{
"model": {
"name": "new model"
}
}
201
{
"info": null,
"created_at": "2018-11-15 19:02:49 UTC",
"updated_at": "2018-11-15 19:02:49 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190963,
"name": "new model",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
model required |
Validations:
|
|
model[name] required |
Validations:
|
|
model[info] optional , nil allowed |
Validations:
|
|
model[vendor_class] optional , nil allowed |
Validations:
|
|
model[hardware_model] optional , nil allowed |
Validations:
|
PUT /api/models/980190962-KVM
{
"name": "KVM",
"model": {
"name": "KVM"
}
}
200
{
"info": "Virtual Machine",
"created_at": "2018-11-15 19:01:27 UTC",
"updated_at": "2018-11-15 19:01:27 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190962,
"name": "KVM",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|
|
model required |
Validations:
|
|
model[name] optional |
Validations:
|
|
model[info] optional , nil allowed |
Validations:
|
|
model[vendor_class] optional , nil allowed |
Validations:
|
|
model[hardware_model] optional , nil allowed |
Validations:
|
DELETE /api/models/980190962-KVM
{
"model": {}
}
200
{
"id": 980190962,
"name": "KVM",
"info": "Virtual Machine",
"created_at": "2018-11-15T19:01:27.702Z",
"updated_at": "2018-11-15T19:01:27.702Z",
"vendor_class": null,
"hardware_model": null
}
| Param name | Description |
|---|---|
|
location_id optional |
Scope by locations Validations:
|
|
organization_id optional |
Scope by organizations Validations:
|
|
id required |
Validations:
|