GET /api/models
List all hardware models

Examples

GET /api/models
400
{
  "error": {
    "message": "Field 'notarightterm' not recognized for searching!",
    "class": "ScopedSearch::QueryNotSupported"
  }
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

search
optional

filter results

Validations:

  • Must be a String

order
optional

Sort and order by a searchable field, e.g. '<field> DESC'

Validations:

  • Must be a String

page
optional

Page number, starting at 1

Validations:

  • Must be a number.

per_page
optional

Number of results per page to return, 'all' to return all results

Validations:

  • Must match regular expression /\A([1-9]\d*|all)\Z$/.

Search fields

Field name Type Possible values
hardware_model string
id integer
info text
name string
vendor_class string

GET /api/models/:id
Show a hardware model

Examples

GET /api/models/980190962-KVM
200
{
  "info": "Virtual Machine",
  "created_at": "2018-11-16 10:02:08 UTC",
  "updated_at": "2018-11-16 10:02:08 UTC",
  "vendor_class": null,
  "hardware_model": null,
  "id": 980190962,
  "name": "KVM",
  "hosts_count": 0
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Validations:

  • Must be an identifier, string from 1 to 128 characters containing only alphanumeric characters, space, underscore(_), hypen(-) with no leading or trailing space.


POST /api/models
Create a hardware model

Examples

POST /api/models
{
  "model": {
    "name": "new model"
  }
}
201
{
  "info": null,
  "created_at": "2018-11-16 10:03:32 UTC",
  "updated_at": "2018-11-16 10:03:32 UTC",
  "vendor_class": null,
  "hardware_model": null,
  "id": 980190963,
  "name": "new model",
  "hosts_count": 0
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

model
required

Validations:

  • Must be a Hash

model[name]
required

Validations:

  • Must be a String

model[info]
optional , nil allowed

Validations:

  • Must be a String

model[vendor_class]
optional , nil allowed

Validations:

  • Must be a String

model[hardware_model]
optional , nil allowed

Validations:

  • Must be a String


PUT /api/models/:id
Update a hardware model

Examples

PUT /api/models/980190962-KVM
{
  "name": "KVM",
  "model": {
    "name": "KVM"
  }
}
200
{
  "info": "Virtual Machine",
  "created_at": "2018-11-16 10:02:08 UTC",
  "updated_at": "2018-11-16 10:02:08 UTC",
  "vendor_class": null,
  "hardware_model": null,
  "id": 980190962,
  "name": "KVM",
  "hosts_count": 0
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Validations:

  • Must be a String

model
required

Validations:

  • Must be a Hash

model[name]
optional

Validations:

  • Must be a String

model[info]
optional , nil allowed

Validations:

  • Must be a String

model[vendor_class]
optional , nil allowed

Validations:

  • Must be a String

model[hardware_model]
optional , nil allowed

Validations:

  • Must be a String


DELETE /api/models/:id
Delete a hardware model

Examples

DELETE /api/models/980190962-KVM
{
  "model": {}
}
200
{
  "id": 980190962,
  "name": "KVM",
  "info": "Virtual Machine",
  "created_at": "2018-11-16T10:02:08.327Z",
  "updated_at": "2018-11-16T10:02:08.327Z",
  "vendor_class": null,
  "hardware_model": null
}

Params

Param name Description
location_id
optional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
optional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
required

Validations:

  • Must be a String