I have a customer who made a payment using a credit and wants to change to a different card (different payment method already associated with his account). How can I modify the payment to reflect this? I tried the following PUT method URL in Postman:
https://sandbox.com/AcumaticaERP/entity/Default/22.200.001/Payment
Here’s the body I passed:
{
"Type":{"value":"Payment"},
"ReferenceNbr": { "value": "183610" },
"PaymentMethod": {"value": "CC MASTCRD"},
"NewCard": { "value": false },
"CardAccountNbr": {"value": "Mastcrd:****-****-****-4203"}
}
I don’t get an error but, unfortunately, Postman just returns the existing Payment with no card change applied.