Skip to main content
The Equipment module (/equipos_principales) is the device inventory for your network. Each Equipo Principal record stores the hardware identity, management network configuration, access credentials, and SNMP parameters for one physical device, optionally linked to a node or a connection.

Data model

EquipoPrincipal (list view)

The list endpoint returns a lightweight version of each device:

EquipoByIdOut (detail view)

When you open a device’s detail page, the API returns the full record with relational context:

Device status values

The detail page colour-codes the device status using the following classification:

Equipment catalog

Before you can create equipment records, device types, brands, and models must exist in the catalog. The catalog (CatalogoEquipo) is a normalised lookup table:
Adding a new entry to the catalog creates or reuses the tipo_id, marca_id, and modelo_id used by equipment records. This ensures consistent naming across all devices.
The catalog endpoint is POST /v1/equipo_principal/crear/catalogo/equipos. You only need to call this once per new device type/brand/model combination.

Equipment list page

Navigate to Equipos Principales in the sidebar. The table shows each device’s ID, brand, model, serial number, and device type. The list supports debounced text search (400 ms delay) and three independent dropdown filters:
  • Marca — filter by brand.
  • Modelo — filter by model (resets when you change the brand filter).
  • Tipo — filter by device type.
Click the blue visibility icon (👁) on a row to expand an inline detail panel. Use Ver info to open the full detail page, or Editar to go straight to the edit form.

Creating equipment

Click Nuevo equipo to open the creation form at /equipos_principales/crear. Provide:
  • nodo_id — associate this device with an existing node.
  • enlace_id — optionally link the device to a specific connection.
  • tipo_id — device type from the catalog.
  • marca_id — brand from the catalog.
  • modelo_id — model from the catalog.
  • serial — physical serial number printed on the device.
  • usuario_gestion — SSH / Telnet / web username.
  • password_gestion — management password (stored in the system — see warning below).

Equipment detail page

Access a device at /equipos_principales/detalle/:equipo_id. The page shows:
1

Header

Device name, type, brand, status pill (colour-coded), and equipment ID badge.
2

Node section

Visible when nodo_id is set. Shows the node name, type, and geographic location (department, province, district).
3

Enlace section

Visible when enlace_id is set. Shows the linked client name, RUC, link type, modality, and locación.
4

Equipment section

Full hardware details: nombre, tipo, marca, modelo, serial, IP de gestión, máscara, gateway, usuario de gestión, SNMP versión, and SNMP community.
5

Password Gestión

The management password is masked by default. Click Mostrar to reveal the plaintext password, and Ocultar to mask it again.

API endpoints

Example: create payload

Example: update payload

Management credentials (usuario_gestion and password_gestion) are stored in the ICP System database. Ensure your database and API server are secured appropriately. Do not share equipment detail URLs with users who should not have access to device credentials.