GetPosItems ()

This function is intended for partners in the POS, restaurant, guest experience, or similar domains that require access to an item menu. It allows retrieving the list of POS items configured in Minihotel, including item codes, names, prices, currencies, department details, status, and last modification date.

HTTP Request Method = GET.

Sandbox EndpointProduction Endpoint
https://sandbox.minihotel.cloud/api/Agents/POS/GetPosItemshttps://api2.minihotel.cloud/api/Agents/POS/GetPosItems

Response

Successful Response Fields

FieldTypeDescription
CodeStringPOS item code
NameStringItem name
CurrencyStringItem currency
PriceDoubleItem price
DepartmentCodeStringDepartment code
DepartmentDescriptionStringDepartment description
CloseBooleanItem status
ModifiedDateTimeLast modified date

Response Example

[
  {
    "Code": "001",
    "Name": "Pool Towel",
    "Currency": "USD",
    "Price": 10.0,
    "DepartmentCode": "SPA",
    "DepartmentDescription": "SPA Department",
    "Close": false,
    "Modified": "2023-07-31T09:56:00"
  }
]