GET /api/models
400
{
"error": {
"message": "Field 'notarightterm' not recognized for searching!",
"class": "ScopedSearch::QueryNotSupported"
}
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
search
optional |
filter results Validations:
|
|
order
optional |
Sort and order by a searchable field, e.g. '<field> DESC' Validations:
|
|
page
optional |
Page number, starting at 1 Validations:
|
|
per_page
optional |
Number of results per page to return, 'all' to return all results Validations:
|
| Field name | Type | Possible values |
|---|---|---|
| hardware_model | string | |
| id | integer | |
| info | text | |
| name | string | |
| vendor_class | string |
GET /api/models/980190962abcdef
200
{
"info": null,
"created_at": "2024-02-22 16:01:31 UTC",
"updated_at": "2024-02-22 16:01:31 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190964,
"name": "980190962abcdef",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|
POST /api/models
{
"model": {
"name": "new model"
}
}
201
{
"info": null,
"created_at": "2024-02-22 16:01:31 UTC",
"updated_at": "2024-02-22 16:01:31 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190963,
"name": "new model",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request 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": "2024-02-22 16:01:23 UTC",
"updated_at": "2024-02-22 16:01:23 UTC",
"vendor_class": null,
"hardware_model": null,
"id": 980190962,
"name": "KVM",
"hosts_count": 0
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request 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": "2024-02-22T16:01:23.114Z",
"updated_at": "2024-02-22T16:01:23.114Z",
"vendor_class": null,
"hardware_model": null
}
| Param name | Description |
|---|---|
|
location_id
optional |
Set the current location context for the request Validations:
|
|
organization_id
optional |
Set the current organization context for the request Validations:
|
|
id
required |
Validations:
|