I'm using the following endpoint to update an order: https://docs.clover.com/reference/orderupdateorder
I'm sending the following payload:
orderCart: { discounts: [ { amount: -200, name: 'My Discount', }, ], },
I also tried:
discounts: [ { amount: -200, name: 'My Discount', }, ],
According to the docs, this should work - but I just get a 200 response and no discount shows up on the order.