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
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.
unitPrice
Number
El precio por unidad del artículo.
createdAt
Date
La fecha en que se creó el artículo.
updatedAt
Date
La fecha en que se actualizó por última vez el artículo.
deleted
Boolean
Esta bandera representa si el registro ha sido eliminado y ya no está disponible para ser utilizado.
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"
}