Am trying to make a bulk line item POST request with specifying the item modifications with in the request. This seems to fail while having the order placed in clover side but not having the modifications I added to the items in the clover web, nor the get orders api call.
Following is a sample of my request.
POST https://apisandbox.dev.clover.com/v3/merchants/ MERCHANTID/orders/ ORDERID/bulk_line_items
{ "items": [ { "item": { "id": "1KSDK117E1YEJ" }, "name": "Ice Lemon Tea", "price": 128, "taxRates": { "elements": [ { "rate": 200000, "name": "Drink Tax", "id": "8AXR1D1H5QB2Y" } ] }, "modifications": { "elements": [ { "name": "1 cube", "amount": 2, "modifier": { "id": "2RBSH3571V6GP" } } ] } } ] }The modifier is a valid one, but this doesn't get reflect in the final purchase order I see in clover web.
What am I missing here.