GET /api/models
Listar todos los modelos de hardware

Parámetros

Nombre del parámetro Descripción
location_id
opcional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
opcional

Set the current organization context for the request

Validations:

  • Must be a Integer

search
opcional

filtrar resultados

Validations:

  • Must be a String

order
opcional

Orden y campo de clasificación, p. ej., 'id DESC'

Validations:

  • Must be a String

page
opcional

Número de página, comenzando por 1

Validations:

  • Must be a number.

per_page
opcional

Número de resultados por página para devolver

Validations:

  • Must be a number.

Campos de búsqueda

Nombre del campo Tipo Valores posibles
hardware_model
info
name
vendor_class

GET /api/models/:id
Mostrar un modelo de hardware

Parámetros

Nombre del parámetro Descripción
location_id
opcional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
opcional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
requerido

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
Crear un modelo de hardware

Parámetros

Nombre del parámetro Descripción
location_id
opcional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
opcional

Set the current organization context for the request

Validations:

  • Must be a Integer

model
requerido

Validations:

  • Must be a Hash

model[name]
requerido

Validations:

  • Must be a String

model[info]
opcional , nil permitido

Validations:

  • Must be a String

model[vendor_class]
opcional , nil permitido

Validations:

  • Must be a String

model[hardware_model]
opcional , nil permitido

Validations:

  • Must be a String


PUT /api/models/:id
Actualizar un modelo de hardware

Parámetros

Nombre del parámetro Descripción
location_id
opcional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
opcional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
requerido

Validations:

  • Must be a String

model
requerido

Validations:

  • Must be a Hash

model[name]
opcional

Validations:

  • Must be a String

model[info]
opcional , nil permitido

Validations:

  • Must be a String

model[vendor_class]
opcional , nil permitido

Validations:

  • Must be a String

model[hardware_model]
opcional , nil permitido

Validations:

  • Must be a String


DELETE /api/models/:id
Borrar un modelo de hardware

Parámetros

Nombre del parámetro Descripción
location_id
opcional

Set the current location context for the request

Validations:

  • Must be a Integer

organization_id
opcional

Set the current organization context for the request

Validations:

  • Must be a Integer

id
requerido

Validations:

  • Must be a String