I have a transaction, running through the javascript sdk, that authorizes the payment. That is all working find, and I'm getting an order id, and auth id etc. I need to update the /amount before doing a capture, this time using the back end (ColdFusion). I'm referencing the docs at https://developer.paypal.com/docs/checkout/integration-features/update-order-details/#2-patch-the-transaction but keep getting invalid request etc url: https://api.sandbox.paypal.com/v2/checkout/orders/[order id] auth: access token generation is successful, and allows a 'get' on the same url, returns the correct order details. body: { op: 'replace', path: '/purchase_units/@reference_id==\'default\'/amount', value: {currency_code: 'USD', value: '500.00'} } I'm not using a reference id, but do see the 'default' in the listing. I'm guessing the issue is something in the formatting of the body. I'll get invalid request, with syntax or missing param issues. Am I missing something?
... View more