Easiest solution is to goto reporting in your ebay store and follow instructions to download CSV report for items needing dispatch.
If you want to further manipulate the data (CSV) using Excel come back to us.
yes I've found that page on google as I searched for "ebay api vba"Not sure why you think that it's easy exactly. But here's the page for the eBay API
https://go.developer.ebay.com/api-documentation
I haven't read it, so I'm not sure if it returns XML or JSON data.
Not sure why you think that it's easy exactly. But here's the page for the eBay API
https://go.developer.ebay.com/api-documentation
I haven't read it, so I'm not sure if it returns XML or JSON data.
SelectNodes("//TotalShippingCost").Item(0).Text
SelectNodes("//TotalShippingCost").Item(0).Attributes.getNamedItem("currencyID").Text
hmm when I tried //TotalShippingCost alone it still gave error, I think in the API doc it says that the input needs include the currencyID="USD" (so the API knows what value to return based on the user's requested currencyID) in this case I'd like the value of TotalShippingCost in USD currency (rather than just a "USD" text)It should be the same syntax as the other nodes:
which should return the node value, which is the AmountType string.Code:SelectNodes("//TotalShippingCost").Item(0).Text
currencyID is an attribute of the node element, and to extract the CurrencyCodeType (the text "USD"), the code should be something like:
Code:SelectNodes("//TotalShippingCost").Item(0).Attributes.getNamedItem("currencyID").Text