Home
Find the answer to your question
In the getEBPCaseDetail response below, you see that the caseSummary.status is "Paid" while the caseDetail.detailStatusInfo.description is closed. Is "Paid" also a type of "close"?
<getEBPCaseDetailResponse xmlns="http://www.ebay.com/marketplace/resolution/v1/services"> </caseSummary> .... <caseDetail> <paymentDetail> .... <detailStatusInfo> </caseDetail> |
Detailed Description
You can use caseDetail.detailStatusInfo to determine the most recent status of a case. As documented, caseDetail.detailStatusInfo can be considered as the high-level status of the case. As a result, this case has indeed been closed as per detailStatusInfo showing here:
<detailStatusInfo> <code>4</code> <description>The escalated case has been closed by eBay.</description> <content>Case closed</content> </detailStatusInfo> |
The reason the case in the <EBPINRStatus>PAID</EBPINRStatus> status is that a REFUND was paid to the buyer as showing in the paymentDetail container as below:
<paymentDetail> <moneyMovement id="M.1"> <type>REFUND</type> <fromParty> <role>SELLER</role> </fromParty> <toParty> <role>BUYER</role> </toParty> <amount currencyId="USD">19.46</amount> <paymentMethod>PAYPAL</paymentMethod> <paypalTransactionId>70A42492XS7684742</paypalTransactionId> <status>SUCCESS</status> <transactionDate>2012-08-27T10:47:35.000Z</transactionDate> </moneyMovement> </paymentDetail> |