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 Endpoint | Production Endpoint |
|---|---|
https://sandbox.minihotel.cloud/api/Agents/POS/GetPosItems | https://api2.minihotel.cloud/api/Agents/POS/GetPosItems |
Response
Successful Response Fields
| Field | Type | Description |
|---|---|---|
| Code | String | POS item code |
| Name | String | Item name |
| Currency | String | Item currency |
| Price | Double | Item price |
| DepartmentCode | String | Department code |
| DepartmentDescription | String | Department description |
| Close | Boolean | Item status |
| Modified | DateTime | Last 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"
}
]
