Home
Find the answer to your question
Question
I need to retrieve the order's
-OrderID
- Order Price
- Order Creation Time
- Tax
-Shipping Cost
-Shipping Service
Is this information available via GetSellerTransactions?
Answer
You can get some of that information from the GetSellerTransations call. Here is how -
1. Make a call to GetSellerTransactions by passing the IncludeContainingOrder tag as true.
<?xml version="1.0" encoding="utf-8"?> <GetSellerTransactionsRequest xmlns="urn:ebay:apis:eBLBaseComponents"> <DetailLevel>ReturnAll</DetailLevel> <RequesterCredentials> <eBayAuthToken>SellerToken</eBayAuthToken> </RequesterCredentials> <IncludeContainingOrder>true</IncludeContainingOrder> <ModTimeFrom>2022-07-09T20:39:10.114Z</ModTimeFrom> <ModTimeTo>2022-08-09T20:39:10.114Z</ModTimeTo> </GetSellerTransactionsRequest> |
2. The response contains transactions that were modified during the time specified by the ModTime time filter.