Ask a Question

Ask a Question
Back to all

Order Notification - Specific Modifier Group

If we have this item with 2 modifier groups:

Avocado Salad

  • Select a drink
    • 7 UP
    • Sprite
  • Select extra drink
    • 7 UP
    • Sprite

And the customer selects one "7 UP" inside "Select a drink" and another "7 UP" inside "Select extra drink".

The order notification comes back with something like below. But how can we tell which 7 UP was selected inside which specific modifier group? This might be necessary when it comes to viewing/modifying the item on our EPOS.

This is just a basic item example, but there will be scenarios where it's important to know which item has been selected within specific groups, e.g. imagine if whatever drink is selected inside "Select extra drink" needs to be prepared/packaged/altered/notified differently compared to a normal drink selection.


"items": [ { "_id": "6963fe9c8f9eaa6255b0fd9a", "plu": "PROD-43-2bcae", "name": "Avocado Salad", "sortOrder": 0, "price": 499, "quantity": 1, "productType": 1, "categoryInfo": {}, "subItems": [ { "_id": "65f2ff80a733910977a6bc88", "plu": "O-d449f", "name": "7 UP", "sortOrder": 0, "price": 0, "quantity": 1, "productType": 2, "categoryInfo": {}, "subItems": [], "packaging": { "count": 1, "reusable": false, "packedItems": 0 }, "productTags": [] }, { "_id": "65f2ff80a733910977a6bc88", "plu": "O-d449f", "name": "7 UP", "sortOrder": 0, "price": 0, "quantity": 1, "productType": 2, "categoryInfo": {}, "subItems": [], "packaging": { "count": 1, "reusable": false, "packedItems": 0 }, "productTags": [] } ], "packaging": { "count": 1, "reusable": false, "packedItems": 0 }, "productTags": [] } ],



Thanks.