Reputation: 560
Currently I am using eBay product finding API. I have tried to call finding API in PHP and got the list of all products, but I also want store id/name in this list.
How can I get store id/name for each product in the listing.
Upvotes: 0
Views: 658
Reputation:
You need to ensure that the outputSelect field in your request has been set to StoreInfo as mentioned in the eBay docs. This ensures that the API will return the storeInfo element which contains the store name and URL.
Upvotes: 2