Get Item


The following endpoint can be used to retrieve the details of an item within the Hyfin application.


Punto Final

The following endpoint can be used to retrieve an item. You must replace the base_url , external_id and site_id variables with the appropriate values.

GET
{base_url}/api/v4/site/{site_id}/item/{external_id}
Solicitud
Ningún cuerpo es necesario para esta llamada de API
Respuesta
Campo
Tipo
Requerido
Descripción
_id
String
El id del artículo. Este campo es generado por el sistema y no es necesario al crear un nuevo artículo, pero es necesario al actualizar un artículo existente.
name
String
El nombre del artículo.
description
String
La descripción del artículo.
unit_price
Number
El precio por unidad del artículo. Format = 0.00
active
Boolean
--
Esta bandera representa si el registro del artículo está activo y disponible para ser utilizado o no.
Default = `true`
created_at
Date
--
La fecha en que se creó el artículo.
updated_at
Date
--
La fecha en que se actualizó por última vez el artículo.
Sample Response
			
				{
  "_id": "6839e415564d3cc2160d945e",
  "name": "Garlic Soy Tikkudak Wings",
  "description": "Tikkudak is a specialty where fried chicken is baked in a charcoal oven to create a smoky and crispy flavor.",
  "unit_price": "15.00",
  "created_at": "2025-05-30T19:19:44.143Z",
  "updated_at": "2025-05-30T19:19:44.143Z"
}