I use CompleteSale function to mark order as completed on eBay via API. What is the way to cancel existing order on eBay via API?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
- How to know full paths to DLL's from .csproj f
I think you want AddDispute. It can be used to cancel single line orders.
It takes
TransactionId
andItemID
OROrderLineItemID
(concatenation ofItemID
andTransactionID
, with a hyphen in between these two ID [OrderLineItemID = ItemID + "-" + OrderLineItemID
]). Presumably, you can call it multiple times to cancel multiple lines. I am not 100% sure though.Sample from Ebay's customer help.