I am trying to use the /v3/merchants/{mId}/orders/{orderId}/bulk_line_items
API to add line item information to an existing order in my Clover POS system. The line items are successfully added and visible in the POS UI. However, I am encountering an issue when trying to add modifiers along with the line items.
Here is the body data I am including in my API request:
{ "items": [ { "price": 1999, "name": "Chimichangas Burrito", "item": { "id": "4R6SKZB2T8A50" }, "priceWithModifiers": 1999, "modifications": [ { "modifier": { "available": "true", "price": "0", "modifierGroup": { "id": "4T91S3WWFSH66" }, "id": "M9J48PHVQ4PRW", "name": "Carnitas" }, "name": "Carnitas", "amount": 0 } ] } ] }
Despite specifying modifiers in my request, they do not seem to be added to the order along with the line items. Could you please advise on how to correctly include modifiers using this API endpoint?
Thank you!