ich benutze paypal rest api zahlungsressource, um die zahl und die artikelinformation einer zahlung zu aktualisieren; ich will nur den Preis und die Steuer des Einzelteils ändern; und Versandkostenmenge; aber gib MALFORMED_REQUEST zurück; machen mich betrunken ...paypal rest api update zahlungsgegenstand
die request_data ist:
{
"op": "replace",
"path": "/transactions/0/item_list/items/0",
"value": {
"name": "hello",
"quantity": "2",
"price": "100",
"currency": "USD",
"tax": "12"
}
},
{
"op": "replace",
"path": "/transactions/0/amount",
"value": {
"currency": "USD",
"total": "224",
"details": {
"shipping": "12",
"subtotal": "200",
"tax": "12"
}
}
}
und zurück: { "name": "MALFORMED_REQUEST", "message": "MALFORMED_REQUEST", "information_link ":" https://developer.paypal.com/docs/api/#MALFORMED_REQUEST“, "debug_id": "78c05f9b4f21"}
i sicherstellen möchten, dass:
1 kann mit paypal 01.238.007 Zahlung Stück Info aktualisieren 2, ist der Pfad "/ transactions/0/item_list/items/0" rechts
vielen Dank!