Update Combo Side Group Items (v2)

Endpoint: config/sim/v2/menuItems/comboSideGroups/bulkUpdateSideGroupItems

Pre-Processing Validation Criteria

Validation messages:
  • A non-empty request file is required.

  • You do not have permissions to access this resource.

  • The hierUnitId field is required.

  • The comboMealGroupObjNum field is required.

  • The itemObjNum field is required.

  • Option bit must contain only 0's and 1's

  • The field options must be a string of length 48.

  • The field Quantity must be between 1 and 99.

  • The field Size1MenuLevelIndex must be between 1 and 8.

  • The field Size2MenuLevelIndex must be between 1 and 8.

  • The field Size3MenuLevelIndex must be between 1 and 8.

  • The field Size4MenuLevelIndex must be between 1 and 8.

  • The field effectivityGroupObjNum must be between -1 and 999999999.

  • The field sequencenum must be between 1 and 8

  • The field ActiveOnLevel must be between 0 and 8.

  • Duplicate itemObjNum for the same comboMealGroupObjNum

  • Duplicate sequenceNum within prices

  • The field sequenceNum cannot be null within prices

  • The field sequenceNum must be in sequential order within an item, starting from 1

  • Invalid options. Cannot select more than 1 item as default for same order Type within a combo side group

Sample Request

[
    {
        "hierUnitId": 88,
        "itemObjNum": 1,
        "quantity": 100,
        "options": "0000000000000000",
        "size1MenuLevelIndex": 2,
        "prices": [
            {
                "sequenceNum": 1,
                "price": 400,
                "prepCost": 200,
                "activeOnLevel": 1
            }
        ],
        "comboMealGroupObjNum": 5
    },
    {
        "hierUnitId": 88,
        "itemObjNum": 2,
        "quantity": 50,
        "options": "0000000000000000",
        "size1MenuLevelIndex": 3,
        "prices": [
            {
                "sequenceNum": 1,
                "price": 150,
                "prepCost": 65,
                "activeOnLevel": 0
            }
        ],
        "comboMealGroupObjNum": 5
    }
]