Operation Id:
menu/menu/put [Official Documentaction]
Methods
- menu_list Array<Object>
- settings Object
- shop_id Integer
- menu_id Integer
- item_id String
- item_textid String
- lang_data Array<Object>
Examples
This function retrieves language-specific data for a particular item with ID "251" in the menu with ID 1, from the shop with ID 1, and updates it with a new name in Polish.
const result = await idosellRequest.putMenu
.shop_id(1)
.menu_id(1)
.item_id("251")
.lang_data([{"lang_id": "pol","name": "new"}])
.exec()