I'm trying to update an approved order amount. I get the error: "ITEM_TOTAL_MISMATCH", "Should equal sum of (unit_amount * quantity) across all items for a given purchase_unit". From what I can see the total match, here is the json that I am sending: '[ { "op": "replace", "path": "/purchase_units/@reference_id==\'default\'/amount", "value": { "currency_code": "USD", "value": "800.00", "breakdown": { "item_total": { "currency_code": "USD", "value": "800.00" } } }, "items": [ { "name": "Move Job", "unit_amount": { "currency_code": "USD", "value": "800.00" }, "quantity":"1" } ] } ]'
... View more