This function is intended for partners in the POS, restaurant, guest experience, or similar domains that need to update items in the Minihotel menu. It allows modifying an existing item’s name, price, or status. Updates made through this function are propagated to other POS systems connected to Minihotel, enabling indirect integration with additional marketplace POS products via a single connection to Minihotel.
HTTP Request Method = POST
| Sandbox Endpoint | Production Endpoint |
|---|---|
https://sandbox.minihotel.cloud/api/Agents/POS/UpdatePosItem | https://api2.minihotel.cloud/api/Agents/POS/UpdatePosItem |
Request
Request Fields
| Field | Type | Required | Description |
|---|---|---|---|
| Code | String | Yes | Item code |
| Name | String | No | Item name |
| Price | Double | No | Item price |
| Close | Boolean | No | Item status |
Note: At least one field must be provided for the update to be applied.
Request Example
{
"code": "002",
"name": "French Fries",
"Price": "12",
"close": false
}
Response
Successful Response Example
{
"Code": "002",
"Name": "French Fries",
"Currency": "",
"Price": 12.0,
"DepartmentCode": "Food",
"DepartmentDescription": "Food",
"Close": false,
"Modified": "2025-12-17T02:23:00"
}
Error Response Example
{
"statusCode": "AEX099",
"message": "Wrong request. You did not provide any valid field to be updated."
}
