UpdatePosItem ()

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 EndpointProduction Endpoint
https://sandbox.minihotel.cloud/api/Agents/POS/UpdatePosItemhttps://api2.minihotel.cloud/api/Agents/POS/UpdatePosItem

Request

Request Fields

FieldTypeRequiredDescription
CodeStringYesItem code
NameStringNoItem name
PriceDoubleNoItem price
CloseBooleanNoItem 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."
}