jim
jim

Reputation: 9138

eBay FindingAPI::findItemsItemsAdvanced to return item specifics

I am using the findItemsAdvanced API of the eBay Finding API. The call is working fine but I need it to return item specifics, you know the details that you see at the top of an eBay, such as : EAN, MPN, ISBN, Manufacturer etc. I am specifically interested in getting the MPN field.

I by default the item attributes fields where these items are stored aren't returned. The documentation seems ambiguous (to me) about this particular field stating that it is not controlled by the output selector.

How do I inform the API that I would like to have these fields returned?

Many thanks.

Upvotes: 2

Views: 259

Answers (1)

user2066189
user2066189

Reputation:

findItemsAdvanced does not return the item specifics. You can instead use the itemID that is returned in the search results and use this to make a separate call to GetSingleItem in the Shopping service. This call will return the item specifics as long as you pass ItemSpecifics in the IncludeSelector field.

Upvotes: 3

Related Questions