EBay API - Filter Items by Shopping / Custom Categories

My scenario: I have a client with an eBay store with custom categories. On their website, they would like to list the items they sell. They would like this list to be filtered by user category.

I searched for a couple of days, and I'm still a little sure about the best way to proceed.

From what I can compile, the only way to get a list of categories defined in the store is to call GetStore in the Trading API. This seems to be supported, although I need to get the user token from my client's eBay account. I guess this works.

However, I don’t see a way to filter items based on custom categories. I looked at the documentation for both the trading and search APIs, but all I can see are filters for predefined eBay categories.

Is it possible to filter user / storages?

+3
source share
5 answers

After digging and posting on eBay forums, I found out that no, it’s impossible to filter certain categories in user / repositories through the API. The only way to filter on user / stored specific categories is in storage hosted on eBay.

This is apparently the way eBay makes the storage hosted on their site more functional than anything you can do with the API.

+2
source

, , , - "GetStore" API, "findItemsAdvanced" Finding API "GetItem" API.

$xml->Item->Storefront->StoreCategoryID $xml->Item->Storefront->StoreCategory2ID.

+5

, , . , , , (StoreCategoryID). - API GetSellerList , storeCategoryID . . : https://ebay.custhelp.com/app/answers/detail/a_id/1178

0

.

0

Sounds like getCategoryInfo or GetCategories can help you.

-3
source

Source: https://habr.com/ru/post/1780774/


All Articles