Get Item


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


Endpoint

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}
Request
No body is required for this API call
Response
Field
Type
Description
id
String
The id of the item. This field is auto generated by the system and is not required when creating a new item, but it is required when updating an existing item.
name
String
The name of the item.
description
String
The description of the item.
unitPrice
Number
The price per unit of the item.
createdAt
Date
The date the item was created.
updatedAt
Date
The date the item was last updated.
deleted
Boolean
This flag represents whether the record is deleted and no longer available to be used.
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"
}